diff options
author | Xan Lopez <xan@src.gnome.org> | 2003-05-11 01:28:07 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2003-05-11 01:28:07 +0800 |
commit | 62bd43f7d8a97b9a8b84f71cfefdb69f303638aa (patch) | |
tree | 68f6080b530f4489fe904e2a454263c116ee3f07 /lib | |
parent | 477a3fa1f329ab95464c9078f6f33c06774e18c1 (diff) | |
download | gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.tar gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.tar.gz gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.tar.bz2 gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.tar.lz gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.tar.xz gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.tar.zst gsoc2013-epiphany-62bd43f7d8a97b9a8b84f71cfefdb69f303638aa.zip |
Alphabetical sort of bookmarks menu elements, fixes #111315. Also create
Alphabetical sort of bookmarks menu elements, fixes #111315.
Also create ephy-node-common.h with some general enums.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ephy-state.c | 1 | ||||
-rw-r--r-- | lib/ephy-types.h | 14 |
2 files changed, 1 insertions, 14 deletions
diff --git a/lib/ephy-state.c b/lib/ephy-state.c index 55a109d1a..bfab0e916 100644 --- a/lib/ephy-state.c +++ b/lib/ephy-state.c @@ -23,6 +23,7 @@ #include "ephy-file-helpers.h" #include "ephy-node.h" #include "ephy-types.h" +#include "ephy-node-common.h" #include <string.h> #include <gtk/gtkwindow.h> diff --git a/lib/ephy-types.h b/lib/ephy-types.h index c0692d6ff..d0fccafa7 100644 --- a/lib/ephy-types.h +++ b/lib/ephy-types.h @@ -32,20 +32,6 @@ typedef enum #define EPHY_NODE_RESERVED_IDS 100 -/* Ids of the root nodes of history, - * bookmarks and favicon cache */ -enum -{ - BOOKMARKS_NODE_ID = 0, - KEYWORDS_NODE_ID = 1, - FAVORITES_NODE_ID = 2, - BMKS_NOTCATEGORIZED_NODE_ID = 3, - STATES_NODE_ID = 4, - HOSTS_NODE_ID = 5, - PAGES_NODE_ID = 6, - ICONS_NODE_ID = 9 -}; - G_END_DECLS #endif |