[gimp] app, plug-ins: clean up previous commit by using g_error_set()...
- From: Jehan Pagès <jehanp src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app, plug-ins: clean up previous commit by using g_error_set()...
- Date: Thu, 21 Dec 2017 20:56:20 +0000 (UTC)
commit 5b9e277625b3dd25cd9f26eea6471286fb71a165
Author: Jehan <jehan girinstud io>
Date: Thu Dec 21 21:55:04 2017 +0100
app, plug-ins: clean up previous commit by using g_error_set()...
... instead of g_message().
app/core/gimpbrush-load.c | 3 ++-
plug-ins/common/file-gbr.c | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/app/core/gimpbrush-load.c b/app/core/gimpbrush-load.c
index 3939253..48eacc7 100644
--- a/app/core/gimpbrush-load.c
+++ b/app/core/gimpbrush-load.c
@@ -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;
}
diff --git a/plug-ins/common/file-gbr.c b/plug-ins/common/file-gbr.c
index 90c840b..91fbebb 100644
--- a/plug-ins/common/file-gbr.c
+++ b/plug-ins/common/file-gbr.c
@@ -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;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]