[gegl] operations: fix names of noise-hurl, -pick, -slur



commit bf0062bce2f349f5c9cfb43a5c97538379e5fec2
Author: Michael Natterer <mitch gimp org>
Date:   Fri Aug 31 20:12:00 2012 +0200

    operations: fix names of noise-hurl, -pick, -slur

 operations/common/noise-hurl.c |    2 +-
 operations/common/noise-pick.c |    2 +-
 operations/common/noise-slur.c |    5 +----
 3 files changed, 3 insertions(+), 6 deletions(-)
---
diff --git a/operations/common/noise-hurl.c b/operations/common/noise-hurl.c
index fddd650..8c088c2 100644
--- a/operations/common/noise-hurl.c
+++ b/operations/common/noise-hurl.c
@@ -130,7 +130,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   point_filter_class->process = process;
 
   gegl_operation_class_set_keys (operation_class,
-      "name",       "gegl:noise-Hurl",
+      "name",       "gegl:noise-hurl",
       "categories", "noise",
       "description", _("Completely randomize a fraction of pixels"),
       NULL);
diff --git a/operations/common/noise-pick.c b/operations/common/noise-pick.c
index 2fb028a..7fcb9a5 100644
--- a/operations/common/noise-pick.c
+++ b/operations/common/noise-pick.c
@@ -187,7 +187,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   filter_class->process = process;
 
   gegl_operation_class_set_keys (operation_class,
-      "name",       "gegl:noise-Pick",
+      "name",       "gegl:noise-pick",
       "categories", "noise",
       "description", _("Randomly interchange some pixels with neighbors"),
       NULL);
diff --git a/operations/common/noise-slur.c b/operations/common/noise-slur.c
index 98d1542..46535f5 100644
--- a/operations/common/noise-slur.c
+++ b/operations/common/noise-slur.c
@@ -163,12 +163,9 @@ process (GeglOperation       *operation,
 static void
 gegl_chant_class_init (GeglChantClass *klass)
 {
-  GObjectClass             *object_class;
   GeglOperationClass       *operation_class;
   GeglOperationFilterClass *filter_class;
 
-
-  object_class    = G_OBJECT_CLASS (klass);
   operation_class = GEGL_OPERATION_CLASS (klass);
   filter_class    = GEGL_OPERATION_FILTER_CLASS (klass);
 
@@ -176,7 +173,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   filter_class->process = process;
 
   gegl_operation_class_set_keys (operation_class,
-      "name",       "gegl:noise-Slur",
+      "name",       "gegl:noise-slur",
       "categories", "noise",
       "description", _("Randomly slide some pixels downward (similar to melting)"),
       NULL);



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