diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-02-21 06:20:08 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-02-21 06:20:08 +0800 |
commit | 7e816a76bac00b8c34bec6849d175bd478af2f16 (patch) | |
tree | 1cca9b151780fcfb0a3ad92185054a9fb6e3f0d9 /lib/egg/egg-toolbars-model.h | |
parent | 1e6a2895325d8c697979404c9f767217b89da76e (diff) | |
download | gsoc2013-epiphany-7e816a76bac00b8c34bec6849d175bd478af2f16.tar.gz gsoc2013-epiphany-7e816a76bac00b8c34bec6849d175bd478af2f16.tar.zst gsoc2013-epiphany-7e816a76bac00b8c34bec6849d175bd478af2f16.zip |
Fix logic error, spotted by Crispin.
2004-02-20 Christian Persch <chpe@cvs.gnome.org>
* lib/egg/egg-editable-toolbar.c: (popup_toolbar_context_menu_cb):
Fix logic error, spotted by Crispin.
* lib/egg/egg-toolbars-model.h:
Make it clear that EggTbModelFlags is a bitfield enum.
Diffstat (limited to 'lib/egg/egg-toolbars-model.h')
-rwxr-xr-x | lib/egg/egg-toolbars-model.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/egg/egg-toolbars-model.h b/lib/egg/egg-toolbars-model.h index 9e1f01a50..07146cb38 100755 --- a/lib/egg/egg-toolbars-model.h +++ b/lib/egg/egg-toolbars-model.h @@ -41,8 +41,8 @@ typedef struct EggToolbarsModelPrivate EggToolbarsModelPrivate; typedef enum { - EGG_TB_MODEL_NOT_REMOVABLE = 1, - EGG_TB_MODEL_ICONS_ONLY = 2 + EGG_TB_MODEL_NOT_REMOVABLE = 1 << 0, + EGG_TB_MODEL_ICONS_ONLY = 1 << 1 } EggTbModelFlags; struct EggToolbarsModel |