[gegl] gegl: Breakpoint and stacktrace sanity: gegl_nop_process()



commit fa149a4ccc53e91f7de9940ddf015e97f6b2fa5b
Author: Martin Nordholts <martinn src gnome org>
Date:   Thu May 13 12:32:52 2010 +0200

    gegl: Breakpoint and stacktrace sanity: gegl_nop_process()

 operations/core/nop.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/operations/core/nop.c b/operations/core/nop.c
index 8bb1232..c92ee7a 100644
--- a/operations/core/nop.c
+++ b/operations/core/nop.c
@@ -33,10 +33,10 @@
 
 
 static gboolean
-process (GeglOperation        *operation,
-         GeglOperationContext *context,
-         const gchar          *output_prop,
-         const GeglRectangle  *result)
+gegl_nop_process (GeglOperation        *operation,
+                  GeglOperationContext *context,
+                  const gchar          *output_prop,
+                  const GeglRectangle  *result)
 {
   GeglBuffer *input;
 
@@ -63,7 +63,7 @@ gegl_chant_class_init (GeglChantClass *klass)
   GeglOperationClass *operation_class;
 
   operation_class = GEGL_OPERATION_CLASS (klass);
-  operation_class->process = process;
+  operation_class->process = gegl_nop_process;
 
   operation_class->name       = "gegl:nop";
   operation_class->categories = "core";



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