From ca6323f382ae1a15a861f7e6558868f1cf8964cf Mon Sep 17 00:00:00 2001 From: Michael Natterer Date: Wed, 11 Apr 2012 01:03:56 +0200 Subject: [PATCH] app: fix signal signature of GimpColorTool::picked() A Babl format is not of GIMP_TYPE_IMAGE_TYPE, this would have horribly crashed on 64bit, I guess... --- app/tools/gimpcolortool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tools/gimpcolortool.c b/app/tools/gimpcolortool.c index e00aab5b51..74d406f33d 100644 --- a/app/tools/gimpcolortool.c +++ b/app/tools/gimpcolortool.c @@ -141,7 +141,7 @@ gimp_color_tool_class_init (GimpColorToolClass *klass) gimp_marshal_VOID__ENUM_POINTER_BOXED_INT, G_TYPE_NONE, 4, GIMP_TYPE_COLOR_PICK_STATE, - GIMP_TYPE_IMAGE_TYPE, + G_TYPE_POINTER, GIMP_TYPE_RGB | G_SIGNAL_TYPE_STATIC_SCOPE, G_TYPE_INT);