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:

committed by
Michael Natterer

parent
c678de97f7
commit
1f6695f4f4
@ -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>
|
2003-11-14 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* app/gui/info-dialog.c (info_dialog_popup): use gtk_window_present().
|
* app/gui/info-dialog.c (info_dialog_popup): use gtk_window_present().
|
||||||
|
@ -722,7 +722,7 @@ gimp_brush_load_brush (gint fd,
|
|||||||
_("Fatal parse error in brush file '%s': "
|
_("Fatal parse error in brush file '%s': "
|
||||||
"Unsupported brush depth %d\n"
|
"Unsupported brush depth %d\n"
|
||||||
"GIMP brushes must be GRAY or RGBA."),
|
"GIMP brushes must be GRAY or RGBA."),
|
||||||
header.bytes, filename);
|
filename, header.bytes);
|
||||||
g_free (name);
|
g_free (name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -722,7 +722,7 @@ gimp_brush_load_brush (gint fd,
|
|||||||
_("Fatal parse error in brush file '%s': "
|
_("Fatal parse error in brush file '%s': "
|
||||||
"Unsupported brush depth %d\n"
|
"Unsupported brush depth %d\n"
|
||||||
"GIMP brushes must be GRAY or RGBA."),
|
"GIMP brushes must be GRAY or RGBA."),
|
||||||
header.bytes, filename);
|
filename, header.bytes);
|
||||||
g_free (name);
|
g_free (name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user