diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-03-19 03:13:23 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-03-19 03:13:23 +0800 |
commit | d012141a9d6dc6e0b374b4e992e18239b21501dd (patch) | |
tree | 430ad3fc3ab6fdda82d91afe2acaadc081ac8c1a /src/ephy-shell.c | |
parent | d248386941ce108b1e99d1a553682d5af791a628 (diff) | |
download | gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.tar gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.tar.gz gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.tar.bz2 gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.tar.lz gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.tar.xz gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.tar.zst gsoc2013-epiphany-d012141a9d6dc6e0b374b4e992e18239b21501dd.zip |
Reimplement ephystate using xml and make it easier to use. -> remove some
2003-03-18 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/ephy-dialog.c: (setup_default_size):
* lib/ephy-state.c: (ephy_states_load), (ephy_states_save),
(find_by_name), (ensure_states), (ephy_state_window_set_size),
(ephy_state_window_save_size), (window_configure_event_cb),
(window_state_event_cb), (ephy_state_add_window),
(ephy_state_save):
* lib/ephy-state.h:
* lib/ephy-types.h:
* src/ephy-shell.c: (ephy_shell_finalize):
* src/ephy-window.c: (setup_window), (ephy_window_init),
(ephy_window_show):
* src/prefs-dialog.c: (prefs_dialog_init):
Reimplement ephystate using xml and make it easier to use.
-> remove some duplicate code
Diffstat (limited to 'src/ephy-shell.c')
-rw-r--r-- | src/ephy-shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ephy-shell.c b/src/ephy-shell.c index 69af9e562..4fc7e26f3 100644 --- a/src/ephy-shell.c +++ b/src/ephy-shell.c @@ -21,6 +21,7 @@ #endif #include "ephy-shell.h" +#include "ephy-state.h" #include "ephy-embed-shell.h" #include "eel-gconf-extensions.h" #include "ephy-prefs.h" @@ -324,6 +325,7 @@ ephy_shell_finalize (GObject *object) g_free (gs->priv); + ephy_state_save (); ephy_file_helpers_shutdown (); ephy_node_system_shutdown (); |