diff options
author | rbuj <[email protected]> | 2019-02-22 12:02:30 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-04-23 11:59:07 +0200 |
commit | de1be0a956d49a82b67ec92741899fea7da60e3a (patch) | |
tree | b73669266033a90ce39789f922ca90343138eaba /src/profile-editor.c | |
parent | 0aa5954350341dca1d262915b956b3bc2ee7577d (diff) | |
download | mate-terminal-de1be0a956d49a82b67ec92741899fea7da60e3a.tar.bz2 mate-terminal-de1be0a956d49a82b67ec92741899fea7da60e3a.tar.xz |
Use gresources for about_DATA, uimanager_DATA & builder_DATA
Diffstat (limited to 'src/profile-editor.c')
-rw-r--r-- | src/profile-editor.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/profile-editor.c b/src/profile-editor.c index 3b41ddd..fc13235 100644 --- a/src/profile-editor.c +++ b/src/profile-editor.c @@ -660,7 +660,6 @@ terminal_profile_edit (TerminalProfile *profile, GtkWindow *transient_parent, const char *widget_name) { - char *path; GtkBuilder *builder; GError *error = NULL; GtkWidget *editor, *w; @@ -677,17 +676,9 @@ terminal_profile_edit (TerminalProfile *profile, return; } - path = g_build_filename (TERM_PKGDATADIR, "profile-preferences.ui", NULL); builder = gtk_builder_new (); - if (!gtk_builder_add_from_file (builder, path, &error)) - { - g_warning ("Failed to load %s: %s\n", path, error->message); - g_error_free (error); - g_free (path); - g_object_unref (builder); - return; - } - g_free (path); + gtk_builder_add_from_resource (builder, TERMINAL_RESOURCES_PATH_PREFIX G_DIR_SEPARATOR_S "ui/profile-preferences.ui", &error); + g_assert_no_error (error); editor = (GtkWidget *) gtk_builder_get_object (builder, "profile-editor-dialog"); g_object_set_data_full (G_OBJECT (editor), "builder", |