diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-01-07 02:14:42 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-01-07 02:14:42 +0800 |
commit | 35ad841aceed89072e2cc6f589405a6feb411f74 (patch) | |
tree | 2fdf16ad0c9c630733841728c9bd0e3406bae4ba /lib/egg/egg-toolbars-model.c | |
parent | 58a62ea3932ab6bdb599a0c519460a56622fe884 (diff) | |
download | gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.gz gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.bz2 gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.lz gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.xz gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.tar.zst gsoc2013-epiphany-35ad841aceed89072e2cc6f589405a6feb411f74.zip |
Use glib-mkenums to generate the enum and flags get_type functions.
2005-01-06 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
* embed/Makefile.am:
* embed/ephy-embed-event.c:
* embed/ephy-embed-event.h:
* embed/ephy-embed-persist.c:
* embed/ephy-embed-persist.h:
* embed/ephy-embed.c:
* embed/ephy-embed.h:
* embed/ephy-permission-manager.c:
* embed/ephy-permission-manager.h:
* lib/egg/Makefile.am:
* lib/egg/egg-toolbars-model.c:
* lib/egg/egg-toolbars-model.h:
* src/Makefile.am:
* src/ephy-link.c:
* src/ephy-link.h:
* src/ephy-navigation-action.c:
* src/ephy-shell.c: (ephy_shell_error_quark):
* src/ephy-shell.h:
* src/ephy-tab.c:
* src/ephy-tab.h:
* src/ephy-window.c:
Use glib-mkenums to generate the enum and flags get_type functions.
Diffstat (limited to 'lib/egg/egg-toolbars-model.c')
-rwxr-xr-x | lib/egg/egg-toolbars-model.c | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/lib/egg/egg-toolbars-model.c b/lib/egg/egg-toolbars-model.c index 0b4bc93ff..a92617f92 100755 --- a/lib/egg/egg-toolbars-model.c +++ b/lib/egg/egg-toolbars-model.c @@ -22,6 +22,7 @@ #include "config.h" #include "egg-toolbars-model.h" +#include "eggtypebuiltins.h" #include "eggmarshalers.h" #include <unistd.h> @@ -71,30 +72,6 @@ struct EggToolbarsModelPrivate }; GType -egg_toolbars_model_flags_get_type (void) -{ - static GType type = 0; - - if (G_UNLIKELY (type == 0)) - { - static const GFlagsValue values[] = - { - { EGG_TB_MODEL_NOT_REMOVABLE, "EGG_TB_MODEL_NOT_REMOVABLE", "not-removable" }, - { EGG_TB_MODEL_ICONS_ONLY, "EGG_TB_MODEL_ICONS_ONLY", "icons-only" }, - { EGG_TB_MODEL_TEXT_ONLY, "EGG_TB_MODEL_TEXT_ONLY", "text-only" }, - { EGG_TB_MODEL_ICONS_TEXT, "EGG_TB_MODEL_ICONS_TEXT", "text" }, - { EGG_TB_MODEL_ICONS_TEXT_HORIZ, "EGG_TB_MODEL_ICONS_TEXT_HORIZ", "text-horiz" }, - { EGG_TB_MODEL_ACCEPT_ITEMS_ONLY, "EGG_TB_MODEL_ACCEPT_ITEMS_ONLY", "accept-items-only" }, - { 0, NULL, NULL } - }; - - type = g_flags_register_static ("EggToolbarsModelFlags", values); - } - -return type; -} - -GType egg_toolbars_model_get_type (void) { static GType type = 0; |