diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2012-08-13 16:00:52 +0800 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-10-08 21:27:05 +0800 |
commit | be3e52e1c22a05b655c3b322045d1f5c6fd76c7f (patch) | |
tree | c5b09e964033368d3fada72097c1e8f85f530e0d /src/window-commands.c | |
parent | 7512839e6add584e184805d3781f9976831a2188 (diff) | |
download | gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.tar gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.tar.gz gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.tar.bz2 gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.tar.lz gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.tar.xz gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.tar.zst gsoc2013-epiphany-be3e52e1c22a05b655c3b322045d1f5c6fd76c7f.zip |
Move windows handling code from EphySession to EphyShell
EphyShell is now a GtkApplication that already does window handling,
however we want to maintain only the of browser windows. Instead of
keeping the window lists in ephy-session, it's easier to override
window_added and window_removed virtual methods of GtkApplication and
update the browser window lists. Most of the cases where this API was
used, had to get the session object from the shell first, now we save
this step keeping the code simpler.
https://bugzilla.gnome.org/show_bug.cgi?id=641734
Diffstat (limited to 'src/window-commands.c')
-rw-r--r-- | src/window-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window-commands.c b/src/window-commands.c index 81ba0f0bb..a38557d72 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -722,7 +722,7 @@ void window_cmd_file_quit (GtkAction *action, EphyWindow *window) { - if (ephy_session_close_all_windows (EPHY_SESSION (ephy_shell_get_session (ephy_shell)))) + if (ephy_shell_close_all_windows (ephy_shell)) g_application_quit (g_application_get_default ()); } |