diff options
author | rbuj <[email protected]> | 2020-02-12 23:24:27 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-03-14 14:40:47 +0100 |
commit | 37a85e35448f8beed2654a4df07a303283a86aac (patch) | |
tree | 95a907f985968653300b8ba863a57fea7f99fdda /stickynotes/stickynotes_applet.c | |
parent | ac0ebc185e14891ffeb98a94f35109603ee45078 (diff) | |
download | mate-applets-37a85e35448f8beed2654a4df07a303283a86aac.tar.bz2 mate-applets-37a85e35448f8beed2654a4df07a303283a86aac.tar.xz |
stickynotes: Use gresources for UI files
Diffstat (limited to 'stickynotes/stickynotes_applet.c')
-rw-r--r-- | stickynotes/stickynotes_applet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stickynotes/stickynotes_applet.c b/stickynotes/stickynotes_applet.c index 70f62727..e00ba0c9 100644 --- a/stickynotes/stickynotes_applet.c +++ b/stickynotes/stickynotes_applet.c @@ -210,7 +210,7 @@ void stickynotes_applet_init_prefs(void) stickynotes->builder = gtk_builder_new (); - gtk_builder_add_from_file (stickynotes->builder, BUILDER_PATH, NULL); + gtk_builder_add_from_resource (stickynotes->builder, GRESOURCE "sticky-notes-preferences.ui", NULL); stickynotes->w_prefs = GTK_WIDGET (gtk_builder_get_object (stickynotes->builder, "preferences_dialog")); |