fixed order of parameters after message change.

2003-11-14  Michael Natterer  <mitch@gimp.org>

	* app/core/gimpbrush.c (gimp_brush_load_brush): fixed order of
	parameters after message change.
This commit is contained in:
Michael Natterer
2003-11-14 16:46:45 +00:00
committed by Michael Natterer
parent c678de97f7
commit 1f6695f4f4
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2003-11-14 Michael Natterer <mitch@gimp.org>
* app/core/gimpbrush.c (gimp_brush_load_brush): fixed order of
parameters after message change.
2003-11-14 Sven Neumann <sven@gimp.org>
* app/gui/info-dialog.c (info_dialog_popup): use gtk_window_present().

View File

@ -722,7 +722,7 @@ gimp_brush_load_brush (gint fd,
_("Fatal parse error in brush file '%s': "
"Unsupported brush depth %d\n"
"GIMP brushes must be GRAY or RGBA."),
header.bytes, filename);
filename, header.bytes);
g_free (name);
return NULL;
}

View File

@ -722,7 +722,7 @@ gimp_brush_load_brush (gint fd,
_("Fatal parse error in brush file '%s': "
"Unsupported brush depth %d\n"
"GIMP brushes must be GRAY or RGBA."),
header.bytes, filename);
filename, header.bytes);
g_free (name);
return NULL;
}