gimp r26879 - in trunk: . app/tools



Author: neo
Date: Fri Sep  5 17:37:17 2008
New Revision: 26879
URL: http://svn.gnome.org/viewvc/gimp?rev=26879&view=rev

Log:
2008-09-05  Sven Neumann  <sven gimp org>

	* app/tools/gimpgegltool.c: blacklist "color-convert" and all 
GIMP
	operations.



Modified:
   trunk/ChangeLog
   trunk/app/tools/gimpgegltool.c

Modified: trunk/app/tools/gimpgegltool.c
==============================================================================
--- trunk/app/tools/gimpgegltool.c	(original)
+++ trunk/app/tools/gimpgegltool.c	Fri Sep  5 17:37:17 2008
@@ -224,13 +224,15 @@
 static gboolean
 gimp_gegl_tool_operation_blacklisted (const gchar *name)
 {
-  static const gchar * const blacklist[] = { "introspect" };
-
+  static const gchar * const blacklist[] =
+  {
+    "convert-format", "gimp-", "introspect"
+  };
   gint i;
 
   for (i = 0; i < G_N_ELEMENTS (blacklist); i++)
     {
-      if (strcmp (name, blacklist[i]) == 0)
+      if (g_str_has_prefix (name, blacklist[i]))
         return TRUE;
     }
 
@@ -647,8 +649,6 @@
 
           if (copy)
             {
-              g_print ("installing property: %s\n", copy->name);
-
               g_object_class_install_property (klass, i + 1, copy);
             }
         }



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