fixed notifier position for post_marshal guard which was off at 0.

Sat Oct 28 00:28:09 2000  Tim Janik  <timj@gtk.org>

        * gclosure.c (g_closure_add_marshal_guards): fixed notifier position
        for post_marshal guard which was off at 0.

Fri Oct 27 21:49:31 2000  Tim Janik  <timj@gtk.org>

        * gobject.[hc]: doh, fix argument order in for
        g_cclosure_new_object_swap and g_cclosure_new_object.
This commit is contained in:
Tim Janik
2000-10-27 22:28:01 +00:00
committed by Tim Janik
parent 6208120896
commit c5695bf798
4 changed files with 20 additions and 10 deletions

View File

@@ -151,10 +151,10 @@ gpointer g_object_steal_qdata (GObject *object,
GQuark quark);
void g_object_watch_closure (GObject *object,
GClosure *closure);
GClosure* g_cclosure_new_object (gpointer object,
GCallback callback_func);
GClosure* g_cclosure_new_object_swap (gpointer object,
GCallback callback_func);
GClosure* g_cclosure_new_object (GCallback callback_func,
gpointer object);
GClosure* g_cclosure_new_object_swap (GCallback callback_func,
gpointer object);
GClosure* g_closure_new_object (guint sizeof_closure,
GObject *object);
void g_value_set_object (GValue *value,