diff options
author | Xan Lopez <xan@igalia.com> | 2012-12-16 17:31:16 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-12-16 17:31:16 +0800 |
commit | 3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48 (patch) | |
tree | 217babbda3a8e3427c09b8600e12c0b82e12059c /lib/Makefile.am | |
parent | 13dd37b49c84e15470a8cba37f08f34a2d9c87d3 (diff) | |
download | gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.tar gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.tar.gz gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.tar.bz2 gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.tar.lz gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.tar.xz gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.tar.zst gsoc2013-epiphany-3b0dc557ca0fe21d59fba8bf7cd653c63b32ea48.zip |
ephy-state: rename to 'ephy-initial-state'
The purpose of EphyState is to track the sizes and positions of
windows, paned or expanders in order to remember what is the preferred
*initial* and *default* state of those UI elements. So for example we
merge the tracking of the size/positions of all main windows in one
record, because we only need an initial value which we'll use as
default for newly created EphyWindows.
Since this is a very specific task, different to the actual tracking
of all sizes and positions in EphySession in order to restore them at
startup, rename the class to EphyInitialState to avoid confusions.
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index c120afc51..146e64709 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -32,15 +32,15 @@ NOINST_H_FILES = \ ephy-zoom.h TYPES_H_FILES = \ - ephy-node.h \ - ephy-state.h + ephy-initial-state.h \ + ephy-node.h INST_H_FILES = \ ephy-dialog.h \ + ephy-initial-state.h \ ephy-node.h \ ephy-node-db.h \ - ephy-settings.h \ - ephy-state.h + ephy-settings.h libephymisc_la_SOURCES = \ ephy-debug.c \ @@ -50,6 +50,7 @@ libephymisc_la_SOURCES = \ ephy-file-chooser.c \ ephy-file-helpers.c \ ephy-gui.c \ + ephy-initial-state.c \ ephy-langs.c \ ephy-node.c \ ephy-node.h \ @@ -66,7 +67,6 @@ libephymisc_la_SOURCES = \ ephy-snapshot-service.c \ ephy-sqlite-connection.c \ ephy-sqlite-statement.c \ - ephy-state.c \ ephy-string.c \ ephy-time-helpers.c \ ephy-web-app-utils.c \ |