diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-09-02 06:31:11 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-09-02 06:31:11 +0800 |
commit | 3375c1878c4c0ebf4f5067d128024ea484208f62 (patch) | |
tree | 63033685b1fca812d98042775701539f6d9ba6e9 /src/ppview-toolbar.c | |
parent | b490b73ed8cc9377f3cecef2553b2c1f5692df94 (diff) | |
download | gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.tar gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.tar.gz gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.tar.bz2 gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.tar.lz gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.tar.xz gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.tar.zst gsoc2013-epiphany-3375c1878c4c0ebf4f5067d128024ea484208f62.zip |
Fix ui xml, make ppview toolbar work again.
2003-09-02 Christian Persch <chpe@cvs.gnome.org>
* src/ppview-toolbar.c:
Fix ui xml, make ppview toolbar work again.
Diffstat (limited to 'src/ppview-toolbar.c')
-rwxr-xr-x | src/ppview-toolbar.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ppview-toolbar.c b/src/ppview-toolbar.c index ec4e72d6d..33ecd0a81 100755 --- a/src/ppview-toolbar.c +++ b/src/ppview-toolbar.c @@ -110,15 +110,15 @@ static GtkActionEntry entries [] = { static guint n_entries = G_N_ELEMENTS (entries); static const gchar *ui_info = -"<Root>\n" -" <dockitem name=\"PPViewToolbar\">\n" -" <toolitem name=\"PPVGotoFirstItem\" verb=\"PPVGotoFirst\" />\n" -" <toolitem name=\"PPVGotoLastItem\" verb=\"PPVGotoLast\" />\n" -" <toolitem name=\"PPVGoBackItem\"verb=\"PPVGoBack\" />\n" -" <toolitem name=\"PPVGoForwardItem\" verb=\"PPVGoForward\" />\n" -" <toolitem name=\"PPVClose\" verb=\"PPVClose\" />\n" -" </dockitem>\n" -"</Root>\n"; +"<ui>" +" <toolbar name=\"PPViewToolbar\">" +" <toolitem name=\"PPVGotoFirstItem\" action=\"PPVGotoFirst\" />" +" <toolitem name=\"PPVGotoLastItem\" action=\"PPVGotoLast\" />" +" <toolitem name=\"PPVGoBackItem\" action=\"PPVGoBack\" />" +" <toolitem name=\"PPVGoForwardItem\" action=\"PPVGoForward\" />" +" <toolitem name=\"PPVClose\" action=\"PPVClose\" />" +" </toolbar>\n" +"</ui>\n"; GType ppview_toolbar_get_type (void) |