vala will translate setting property:
---
a.prop = "value"
----
to
--- 
class_a_set_prop (a, "value");
---
and this won't emit a notify signal, because the signal is only emitted
by g_object_set.

However, if I want to catch the signal, what should I do?

Yu


_______________________________________________
Vala-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/vala-list

Reply via email to