[gimp] Bug 678085 - Cage tool freezes GIMP



commit b5546ac0ac4a30bfd31ccc75c22f722a1c38dee1
Author: Massimo Valentini <mvalentini src gnome org>
Date:   Sun Feb 7 18:50:11 2016 +0100

    Bug 678085 - Cage tool freezes GIMP
    
    progress signal accepts 1 parameter not 0
    it worked in linux, but not in win64

 app/operations/gimpoperationcagetransform.c |    3 ++-
 app/operations/gimpoperationshapeburst.c    |    3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/app/operations/gimpoperationcagetransform.c b/app/operations/gimpoperationcagetransform.c
index 61c4f3f..be22122 100644
--- a/app/operations/gimpoperationcagetransform.c
+++ b/app/operations/gimpoperationcagetransform.c
@@ -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;
diff --git a/app/operations/gimpoperationshapeburst.c b/app/operations/gimpoperationshapeburst.c
index bcf8d45..26a414f 100644
--- a/app/operations/gimpoperationshapeburst.c
+++ b/app/operations/gimpoperationshapeburst.c
@@ -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;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]