gegl r2916 - trunk/operations/common



Author: martinn
Date: Sun Feb 15 19:25:33 2009
New Revision: 2916
URL: http://svn.gnome.org/viewvc/gegl?rev=2916&view=rev

Log:
Namespace static functions in operation introspect.c

Modified:
   trunk/operations/common/introspect.c

Modified: trunk/operations/common/introspect.c
==============================================================================
--- trunk/operations/common/introspect.c	(original)
+++ trunk/operations/common/introspect.c	Sun Feb 15 19:25:33 2009
@@ -37,7 +37,7 @@
 #include <string.h>
 
 static GeglRectangle
-get_bounding_box (GeglOperation *operation)
+gegl_introspect_get_bounding_box (GeglOperation *operation)
 {
   GeglChantO *o = GEGL_CHANT_PROPERTIES (operation);
 
@@ -53,10 +53,10 @@
 }
 
 static gboolean
-process (GeglOperation       *operation,
-         GeglOperationContext     *context,
-         const gchar         *output_pad,
-         const GeglRectangle *result)
+gegl_introspect_process (GeglOperation        *operation,
+                         GeglOperationContext *context,
+                         const gchar          *output_pad,
+                         const GeglRectangle  *result)
 {
   GeglChantO *o = GEGL_CHANT_PROPERTIES (operation);
 
@@ -119,8 +119,8 @@
   operation_class = GEGL_OPERATION_CLASS (klass);
   source_class    = GEGL_OPERATION_SOURCE_CLASS (klass);
 
-  operation_class->process = process;
-  operation_class->get_bounding_box = get_bounding_box;
+  operation_class->process          = gegl_introspect_process;
+  operation_class->get_bounding_box = gegl_introspect_get_bounding_box;
 
   operation_class->name        = "gegl:introspect";
   operation_class->categories  = "render";



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