From 449753407d3ecf43e3401363557437984c138941 Mon Sep 17 00:00:00 2001 From: rbuj Date: Fri, 22 Feb 2019 12:02:30 +0100 Subject: Use gresources for about_DATA, uimanager_DATA & builder_DATA --- src/profile-editor.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'src/profile-editor.c') 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", -- cgit v1.2.1