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:
parent
3adc0816e6
commit
5c4b077fd6
3 changed files with 7 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue