diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | lib/egg/egg-toolbar-editor.c | 2 | ||||
-rwxr-xr-x | lib/egg/egg-toolbar-editor.h | 3 |
3 files changed, 11 insertions, 1 deletions
@@ -1,5 +1,12 @@ 2004-07-24 Christian Persch <chpe@cvs.gnome.org> + * lib/egg/egg-toolbar-editor.c: + * lib/egg/egg-toolbar-editor.h: + + Make egg_toolbar_editor_add_action public again. + +2004-07-24 Christian Persch <chpe@cvs.gnome.org> + * embed/mozilla/EphyBrowser.cpp: Remove some unneeded includes. diff --git a/lib/egg/egg-toolbar-editor.c b/lib/egg/egg-toolbar-editor.c index 360cb50c6..e0c48dab5 100755 --- a/lib/egg/egg-toolbar-editor.c +++ b/lib/egg/egg-toolbar-editor.c @@ -603,7 +603,7 @@ egg_toolbar_editor_init (EggToolbarEditor *t) setup_editor (t); } -static void +void egg_toolbar_editor_add_action (EggToolbarEditor *editor, const char *action_name) { diff --git a/lib/egg/egg-toolbar-editor.h b/lib/egg/egg-toolbar-editor.h index 5a96ad46f..4855408f5 100755 --- a/lib/egg/egg-toolbar-editor.h +++ b/lib/egg/egg-toolbar-editor.h @@ -59,6 +59,9 @@ GtkWidget *egg_toolbar_editor_new (GtkUIManager *merge, void egg_toolbar_editor_load_actions (EggToolbarEditor *editor, const char *xml_file); +void egg_toolbar_editor_add_action (EggToolbarEditor *editor, + const char *action_name); + G_END_DECLS #endif |