Skip to content

Commit

Permalink
Bug 678085 - Cage tool freezes GIMP
Browse files Browse the repository at this point in the history
progress signal accepts 1 parameter not 0
it worked in linux, but not in win64
  • Loading branch information
Massimo Valentini committed Feb 7, 2016
1 parent c59f3c7 commit b5546ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/operations/gimpoperationcagetransform.c
Expand Up @@ -111,7 +111,8 @@ gimp_operation_cage_transform_class_init (GimpOperationCageTransformClass *klass
0,
NULL, NULL,
gimp_marshal_VOID__DOUBLE,
G_TYPE_NONE, 0);
G_TYPE_NONE, 1,
G_TYPE_DOUBLE);

object_class->get_property = gimp_operation_cage_transform_get_property;
object_class->set_property = gimp_operation_cage_transform_set_property;
Expand Down
3 changes: 2 additions & 1 deletion app/operations/gimpoperationshapeburst.c
Expand Up @@ -92,7 +92,8 @@ gimp_operation_shapeburst_class_init (GimpOperationShapeburstClass *klass)
0,
NULL, NULL,
gimp_marshal_VOID__DOUBLE,
G_TYPE_NONE, 0);
G_TYPE_NONE, 1,
G_TYPE_DOUBLE);

object_class->set_property = gimp_operation_shapeburst_set_property;
object_class->get_property = gimp_operation_shapeburst_get_property;
Expand Down

1 comment on commit b5546ac

@Mornongsmokie
Copy link

@Mornongsmokie Mornongsmokie commented on b5546ac Sep 24, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't found on my Debian.
app/operations/gimpoperationcagetransform.c.

Please sign in to comment.