From cd109bc6ef7192662e194379d6c47e1f2b2d9544 Mon Sep 17 00:00:00 2001 From: gunnar_g Date: Wed, 4 Nov 2009 13:46:37 +0000 Subject: [PATCH] Improved the error message when problems occur at load_ui --- src/support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support.c b/src/support.c index 05e830fc..5a373fbd 100644 --- a/src/support.c +++ b/src/support.c @@ -56,7 +56,7 @@ load_ui (const gchar *filename) if (!gtk_builder_add_from_file (builder, filename, &error)) { main_exit_program(EXIT_FILE_NOT_FOUND, - ": File not found %s\n", filename); + ": Problems found in the glade file: %s\n", error->message); } gtk_builder_connect_signals (builder, NULL);