From 16ae921196f21a6f9c95f27fe94bf61f0df9eda1 Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 30 Jan 2020 17:03:35 +0100 Subject: Terminate the application if the resource doesn't exists --- src/gtk-utils.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'src/gtk-utils.c') diff --git a/src/gtk-utils.c b/src/gtk-utils.c index 263773a..1e45ef8 100644 --- a/src/gtk-utils.c +++ b/src/gtk-utils.c @@ -573,25 +573,6 @@ show_help_dialog (GtkWindow *parent, } -GtkBuilder * -_gtk_builder_new_from_resource (const char *resource_path) -{ - GtkBuilder *builder; - char *full_path; - GError *error = NULL; - - builder = gtk_builder_new (); - full_path = g_strconcat (ENGRAMPA_RESOURCE_UI_PATH G_DIR_SEPARATOR_S, resource_path, NULL); - if (! gtk_builder_add_from_resource (builder, full_path, &error)) { - g_warning ("%s\n", error->message); - g_clear_error (&error); - } - g_free (full_path); - - return builder; -} - - GtkWidget * _gtk_builder_get_widget (GtkBuilder *builder, const char *name) -- cgit v1.2.1