diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-10-27 16:13:36 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-10-27 16:13:36 +0800 |
commit | 32ccc668ac8e87ec9dd67b9d594a7fcf89381776 (patch) | |
tree | f8a4d9cd11393f1a3589f04c2363e4cd6b9d4093 /lib/egg/egg-editable-toolbar.h | |
parent | 36dc5ffa3ccd419fa87677829f7e49556528ccb1 (diff) | |
download | gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.tar gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.tar.gz gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.tar.bz2 gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.tar.lz gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.tar.xz gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.tar.zst gsoc2013-epiphany-32ccc668ac8e87ec9dd67b9d594a7fcf89381776.zip |
Fixup spinner when resetting the toolbar model. Update spinner on toolbar
2003-10-27 Marco Pesenti Gritti <marco@gnome.org>
* lib/egg/egg-editable-toolbar.c: (create_dock), (set_fixed_style),
(unset_fixed_style), (toolbar_changed_cb), (unparent_fixed),
(update_fixed), (toolbar_removed_cb), (toolbars_clean),
(egg_editable_toolbar_construct), (egg_editable_toolbar_init),
(egg_editable_toolbar_finalize), (egg_editable_toolbar_set_fixed):
* lib/egg/egg-editable-toolbar.h:
* src/toolbar.c: (toolbar_style_sync), (create_spinner),
(toolbar_init):
Fixup spinner when resetting the toolbar model.
Update spinner on toolbar style change.
Fix a typo in toolbars creation that wa causing fs toolbar
to be hidden.
Diffstat (limited to 'lib/egg/egg-editable-toolbar.h')
-rwxr-xr-x | lib/egg/egg-editable-toolbar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/egg/egg-editable-toolbar.h b/lib/egg/egg-editable-toolbar.h index e361b83c5..d332f482c 100755 --- a/lib/egg/egg-editable-toolbar.h +++ b/lib/egg/egg-editable-toolbar.h @@ -24,6 +24,7 @@ #include <gtk/gtkuimanager.h> #include <gtk/gtkselection.h> #include <gtk/gtkvbox.h> +#include <gtk/gtktoolbar.h> G_BEGIN_DECLS @@ -67,7 +68,7 @@ void egg_editable_toolbar_set_drag_dest (EggEditableToolbar *etoolbar, const GtkTargetEntry *targets, gint n_targets, const char *toolbar_name); -void egg_editable_toolbar_set_fixed (EggEditableToolbar *etoolbar, +GtkToolbar *egg_editable_toolbar_set_fixed (EggEditableToolbar *etoolbar, GtkWidget *fixed); |