1
1
mirror of https://github.com/tstellar/bygfoot.git synced 2025-01-18 18:02:32 +01:00

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 ed0693e856
commit cd109bc6ef

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