gegl r2810 - in trunk: . gegl/process
- From: ok svn gnome org
- To: svn-commits-list gnome org
- Subject: gegl r2810 - in trunk: . gegl/process
- Date: Thu, 27 Nov 2008 22:01:42 +0000 (UTC)
Author: ok
Date: Thu Nov 27 22:01:42 2008
New Revision: 2810
URL: http://svn.gnome.org/viewvc/gegl?rev=2810&view=rev
Log:
* gegl/process/gegl-eval-mgr.c: (gegl_eval_mgr_new): do not reference
potential NULL property on operation, "notify" property changed
signals should be relayed through the node.
Modified:
trunk/ChangeLog
trunk/gegl/process/gegl-eval-mgr.c
Modified: trunk/gegl/process/gegl-eval-mgr.c
==============================================================================
--- trunk/gegl/process/gegl-eval-mgr.c (original)
+++ trunk/gegl/process/gegl-eval-mgr.c Thu Nov 27 22:01:42 2008
@@ -235,7 +235,8 @@
self->pad_name = g_strdup (pad_name);
else
self->pad_name = g_strdup ("output");
- g_signal_connect (G_OBJECT (self->node->operation), "notify", G_CALLBACK (change_notification), self);
+ /*g_signal_connect (G_OBJECT (self->node->operation), "notify", G_CALLBACK (change_notification), self);*/
g_signal_connect (G_OBJECT (self->node), "invalidated", G_CALLBACK (change_notification), self);
+ g_signal_connect (G_OBJECT (self->node), "notify", G_CALLBACK (change_notification), self);
return self;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]