gegl r2823 - in trunk: . gegl/operation



Author: martinn
Date: Tue Dec 16 19:05:42 2008
New Revision: 2823
URL: http://svn.gnome.org/viewvc/gegl?rev=2823&view=rev

Log:
* gegl/operation/gegl-operation-source.c (get_bounding_box):
Update warning given when subclasses does not override this
method.


Modified:
   trunk/ChangeLog
   trunk/gegl/operation/gegl-operation-source.c

Modified: trunk/gegl/operation/gegl-operation-source.c
==============================================================================
--- trunk/gegl/operation/gegl-operation-source.c	(original)
+++ trunk/gegl/operation/gegl-operation-source.c	Tue Dec 16 19:05:42 2008
@@ -145,8 +145,10 @@
 {
   GeglRectangle result = { 0, 0, 0, 0 };
 
-  g_warning ("Gegl Source '%s' has no proper have_rect function",
-             G_OBJECT_CLASS_NAME (G_OBJECT_GET_CLASS (self)));
+  g_warning ("Gegl Source '%s' does not override %s()",
+             G_OBJECT_CLASS_NAME (G_OBJECT_GET_CLASS (self)),
+             G_STRFUNC);
+
   return result;
 }
 



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