Wed Mar 28 17:04:06 2001 Tim Janik <timj@gtk.org>
* gobject.c (object_queue_property): only queue readable properties
for notification changes.
Portable way to copy <type>va_list</type> variables.
</para>
+<!-- # Unused Parameters # -->
@ap1: the <type>va_list</type> variable to place a copy of @ap2 in.
@ap2: a <type>va_list</type>.
+Wed Mar 28 17:04:06 2001 Tim Janik <timj@gtk.org>
+
+ * gobject.c (object_queue_property): only queue readable properties
+ for notification changes.
+
Thu Mar 22 13:36:50 2001 Tim Janik <timj@gtk.org>
* gsignal.c (g_signal_newv): catch G_SIGNAL_RUN_FIRST with a return value.
GParamSpec *pspec,
NotifyQueue *nqueue)
{
- /* we will dedup later */
- nqueue->pspecs = g_slist_prepend (nqueue->pspecs, pspec);
- nqueue->n_pspecs++;
+ if (pspec->flags & G_PARAM_READABLE)
+ {
+ /* we will dedup later */
+ nqueue->pspecs = g_slist_prepend (nqueue->pspecs, pspec);
+ nqueue->n_pspecs++;
+ }
}
static void