Improved the error message when problems occur at load_ui

This commit is contained in:
gunnar_g 2009-11-04 13:46:37 +00:00
parent 8de749877a
commit 88b85b32ff
1 changed files with 1 additions and 1 deletions

View File

@ -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);