app, plug-ins: clean up previous commit by using g_error_set()...

... instead of g_message().
This commit is contained in:
Jehan 2017-12-21 21:55:04 +01:00
parent 657a754f98
commit 5b9e277625
2 changed files with 4 additions and 2 deletions

View File

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

View File

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