added missing newline in error message.

2004-05-10  Sven Neumann  <sven@gimp.org>

	* app/gui/tips-dialog.c: added missing newline in error message.
This commit is contained in:
Sven Neumann 2004-05-10 17:36:37 +00:00 committed by Sven Neumann
parent 3adc0816e6
commit 5c4b077fd6
3 changed files with 7 additions and 3 deletions

View file

@ -1,9 +1,13 @@
2004-05-10 Sven Neumann <sven@gimp.org>
* app/gui/tips-dialog.c: added missing newline in error message.
2004-05-10 Michael Natterer <mitch@gimp.org>
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

View file

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

View file

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