diff options
author | Xan Lopez <xan@igalia.com> | 2012-03-27 19:31:56 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2012-03-28 03:42:41 +0800 |
commit | 98e31b7886bad0eae162ec7c6513a1d20f306727 (patch) | |
tree | 714c4d1d1341f9947ce9d12168a55f6609ce1a42 /src/ephy-history-window.c | |
parent | d892edb5d13028c4d150acba9edf3792eb000194 (diff) | |
download | gsoc2013-epiphany-98e31b7886bad0eae162ec7c6513a1d20f306727.tar.gz gsoc2013-epiphany-98e31b7886bad0eae162ec7c6513a1d20f306727.tar.zst gsoc2013-epiphany-98e31b7886bad0eae162ec7c6513a1d20f306727.zip |
Use glib resources to bundle our UI files
https://bugzilla.gnome.org/show_bug.cgi?id=672907
Diffstat (limited to 'src/ephy-history-window.c')
-rw-r--r-- | src/ephy-history-window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ephy-history-window.c b/src/ephy-history-window.c index 88dd18d59..7581f3d2f 100644 --- a/src/ephy-history-window.c +++ b/src/ephy-history-window.c @@ -1145,9 +1145,9 @@ ephy_history_window_constructed (GObject *object) gtk_ui_manager_insert_action_group (ui_merge, action_group, 0); - gtk_ui_manager_add_ui_from_file (ui_merge, - ephy_file ("epiphany-history-window-ui.xml"), - NULL); + gtk_ui_manager_add_ui_from_resource (ui_merge, + "/org/gnome/epiphany/epiphany-history-window-ui.xml", + NULL); gtk_ui_manager_ensure_update (ui_merge); editor->priv->ui_merge = ui_merge; editor->priv->action_group = action_group; |