diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-09-04 20:06:35 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-09-04 20:06:35 +0800 |
commit | a16915c7337f69679aca212484a5f9568decb217 (patch) | |
tree | 4d248944b481943c6454c963222d18c21f228a4f | |
parent | 950219c7eb23cc9e19017c9adde87ca57e2bceeb (diff) | |
download | gsoc2013-epiphany-a16915c7337f69679aca212484a5f9568decb217.tar.gz gsoc2013-epiphany-a16915c7337f69679aca212484a5f9568decb217.tar.zst gsoc2013-epiphany-a16915c7337f69679aca212484a5f9568decb217.zip |
Fix a typo in the xml
2003-09-04 Marco Pesenti Gritti <marco@gnome.org>
* data/ui/epiphany-history-window-ui.xml.in:
Fix a typo in the xml
* src/bookmarks/ephy-bookmarks-editor.c:
* src/ephy-history-window.c: (ephy_history_window_show_popup_cb):
Change the popups path to fit new api
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | data/ui/epiphany-history-window-ui.xml.in | 2 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-editor.c | 2 | ||||
-rw-r--r-- | src/ephy-history-window.c | 2 |
4 files changed, 13 insertions, 4 deletions
@@ -1,5 +1,16 @@ 2003-09-04 Marco Pesenti Gritti <marco@gnome.org> + * data/ui/epiphany-history-window-ui.xml.in: + + Fix a typo in the xml + + * src/bookmarks/ephy-bookmarks-editor.c: + * src/ephy-history-window.c: (ephy_history_window_show_popup_cb): + + Change the popups path to fit new api + +2003-09-04 Marco Pesenti Gritti <marco@gnome.org> + * lib/widgets/ephy-node-view.c: (drag_motion_cb): Check if the target type match before highlighting diff --git a/data/ui/epiphany-history-window-ui.xml.in b/data/ui/epiphany-history-window-ui.xml.in index 3e5c80dd8..1d977b092 100644 --- a/data/ui/epiphany-history-window-ui.xml.in +++ b/data/ui/epiphany-history-window-ui.xml.in @@ -25,8 +25,6 @@ <menuitem name="HelpAbout" action="HelpAbout"/> </menu> -</menu> - </menubar> <popup name="EphyHistoryWindowPopup" action="PopupAction"> diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 8c61d8d91..039b6aff1 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -943,7 +943,7 @@ ephy_bookmarks_editor_show_popup_cb (GtkWidget *view, GtkWidget *widget; widget = gtk_ui_manager_get_widget (editor->priv->ui_merge, - "/popups/EphyBookmarkEditorPopup"); + "/EphyBookmarkEditorPopup"); gtk_menu_popup (GTK_MENU (widget), NULL, NULL, NULL, NULL, 2, gtk_get_current_event_time ()); } diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 682030978..711a93332 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -757,7 +757,7 @@ ephy_history_window_show_popup_cb (GtkWidget *view, GtkWidget *widget; widget = gtk_ui_manager_get_widget (editor->priv->ui_merge, - "/popups/EphyHistoryWindowPopup"); + "/EphyHistoryWindowPopup"); gtk_menu_popup (GTK_MENU (widget), NULL, NULL, NULL, NULL, 2, gtk_get_current_event_time ()); } |