gegl r2741 - in trunk: . gegl/buffer



Author: ok
Date: Thu Nov 13 23:46:48 2008
New Revision: 2741
URL: http://svn.gnome.org/viewvc/gegl?rev=2741&view=rev

Log:
* gegl/buffer/gegl-buffer.c: (gegl_buffer_command),
(gegl_buffer_class_init): improved naming of command callback for
backtraces.


Modified:
   trunk/ChangeLog
   trunk/gegl/buffer/gegl-buffer.c

Modified: trunk/gegl/buffer/gegl-buffer.c
==============================================================================
--- trunk/gegl/buffer/gegl-buffer.c	(original)
+++ trunk/gegl/buffer/gegl-buffer.c	Thu Nov 13 23:46:48 2008
@@ -676,12 +676,12 @@
 
 
 static gpointer
-command (GeglTileSource     *source,
-         GeglTileCommand command,
-         gint            x,
-         gint            y,
-         gint            z,
-         gpointer        data)
+gegl_buffer_command (GeglTileSource *source,
+                     GeglTileCommand command,
+                     gint            x,
+                     gint            y,
+                     gint            z,
+                     gpointer        data)
 {
   GeglTileHandler *handler = GEGL_HANDLER (source);
   switch (command)
@@ -705,7 +705,7 @@
   gobject_class->constructor  = gegl_buffer_constructor;
   gobject_class->set_property = set_property;
   gobject_class->get_property = get_property;
-  tile_source_class->command = command;
+  tile_source_class->command = gegl_buffer_command;
 
   g_object_class_install_property (gobject_class, PROP_PX_SIZE,
                                    g_param_spec_int ("px-size", "pixel-size", "size of a single pixel in bytes.",



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