gegl r2626 - in trunk: . gegl/graph
- From: ok svn gnome org
- To: svn-commits-list gnome org
- Subject: gegl r2626 - in trunk: . gegl/graph
- Date: Tue, 14 Oct 2008 23:25:30 +0000 (UTC)
Author: ok
Date: Tue Oct 14 23:25:30 2008
New Revision: 2626
URL: http://svn.gnome.org/viewvc/gegl?rev=2626&view=rev
Log:
* gegl/graph/gegl-node.c: (gegl_node_set_op_class): when failing to
find an op create a 'gegl:nop' op instead of 'nop'.
Modified:
trunk/ChangeLog
trunk/gegl/graph/gegl-node.c
Modified: trunk/gegl/graph/gegl-node.c
==============================================================================
--- trunk/gegl/graph/gegl-node.c (original)
+++ trunk/gegl/graph/gegl-node.c Tue Oct 14 23:25:30 2008
@@ -945,13 +945,13 @@
if (!type)
{
g_warning ("Failed to set operation type %s, using a passthrough op instead", op_class);
- if (strcmp (op_class, "nop"))
+ if (strcmp (op_class, "gegl:nop"))
{
- gegl_node_set_op_class (node, "nop", NULL, var_args);
+ gegl_node_set_op_class (node, "gegl:nop", NULL, var_args);
}
else
{
- g_warning ("The failing op was 'nop' this means that GEGL was unable to locate any of it's\n"
+ g_warning ("The failing op was 'gegl:nop' this means that GEGL was unable to locate any of it's\n"
"plug-ins. Try making GEGL_PATH point to the directory containing the .so|.dll\n"
"files with the image processing plug-ins, optionally you could try to make it\n"
"point to the operations directory of a GEGL sourcetree with a build.");
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]