summaryrefslogtreecommitdiff
path: root/trashapplet/src/trashapplet.c
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-12-02 12:27:00 +0100
committerraveit65 <[email protected]>2020-12-10 12:43:18 +0100
commited6f8343524607cd288ababeb9295541e717aa41 (patch)
treec4108037dddee2679302bb130f5323ee56c553b7 /trashapplet/src/trashapplet.c
parent4cb6f915b1a91497df1b13cdab887df1bdaed101 (diff)
downloadmate-applets-ed6f8343524607cd288ababeb9295541e717aa41.tar.bz2
mate-applets-ed6f8343524607cd288ababeb9295541e717aa41.tar.xz
trashapplet: load menu and ui files from resource bundle
Diffstat (limited to 'trashapplet/src/trashapplet.c')
-rw-r--r--trashapplet/src/trashapplet.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/trashapplet/src/trashapplet.c b/trashapplet/src/trashapplet.c
index d3c419ce..c6a4d5ff 100644
--- a/trashapplet/src/trashapplet.c
+++ b/trashapplet/src/trashapplet.c
@@ -616,7 +616,6 @@ trash_applet_factory (MatePanelApplet *applet,
if (!strcmp (iid, "TrashApplet"))
{
GtkActionGroup *action_group;
- gchar *ui_path;
g_set_application_name (_("Trash Applet"));
@@ -629,9 +628,9 @@ trash_applet_factory (MatePanelApplet *applet,
trash_applet_menu_actions,
G_N_ELEMENTS (trash_applet_menu_actions),
applet);
- ui_path = g_build_filename (TRASH_MENU_UI_DIR, "trashapplet-menu.xml", NULL);
- mate_panel_applet_setup_menu_from_file (applet, ui_path, action_group);
- g_free (ui_path);
+ mate_panel_applet_setup_menu_from_resource (applet,
+ GRESOURCE "trashapplet-menu.xml",
+ action_group);
g_object_unref (action_group);
gtk_widget_show (GTK_WIDGET (applet));