mirror of https://github.com/GNOME/gimp.git
app, plug-ins: clean up previous commit by using g_error_set()...
... instead of g_message().
This commit is contained in:
parent
657a754f98
commit
5b9e277625
|
@ -228,7 +228,8 @@ gimp_brush_load_brush (GimpContext *context,
|
|||
|
||||
if (header.header_size < sizeof (BrushHeader))
|
||||
{
|
||||
g_message (_("Unsupported brush format"));
|
||||
g_set_error (error, GIMP_DATA_ERROR, GIMP_DATA_ERROR_READ,
|
||||
_("Unsupported brush format"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
@ -408,7 +408,8 @@ load_image (GFile *file,
|
|||
bh.header_size += 8;
|
||||
if (bh.header_size < sizeof (BrushHeader))
|
||||
{
|
||||
g_message (_("Unsupported brush format"));
|
||||
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
|
||||
_("Unsupported brush format"));
|
||||
g_object_unref (input);
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue