diff --git a/ChangeLog b/ChangeLog index 2b60b967a0..cb05758ae1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,13 @@ +2004-05-10 Sven Neumann + + * app/gui/tips-dialog.c: added missing newline in error message. + 2004-05-10 Michael Natterer More GimpContainerView chopping: * app/widgets/gimpcontainerview.[ch]: added - GimpContainerViewPrivate struct (which is currently puclic :-) and + GimpContainerViewPrivate struct (which is currently public :-) and removed all members from the GimpContainerView struct. Added accessors for "context", "container" and "preview_size / preview_border_width". Added macro to get the private struct diff --git a/app/dialogs/tips-dialog.c b/app/dialogs/tips-dialog.c index 07ecb8ec66..ef2e71c16e 100644 --- a/app/dialogs/tips-dialog.c +++ b/app/dialogs/tips-dialog.c @@ -102,7 +102,7 @@ tips_dialog_create (Gimp *gimp) } else if (error) { - g_printerr ("Error while parsing '%s': %s", + g_printerr ("Error while parsing '%s': %s\n", filename, error->message); g_error_free (error); } diff --git a/app/gui/tips-dialog.c b/app/gui/tips-dialog.c index 07ecb8ec66..ef2e71c16e 100644 --- a/app/gui/tips-dialog.c +++ b/app/gui/tips-dialog.c @@ -102,7 +102,7 @@ tips_dialog_create (Gimp *gimp) } else if (error) { - g_printerr ("Error while parsing '%s': %s", + g_printerr ("Error while parsing '%s': %s\n", filename, error->message); g_error_free (error); }