mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-26 12:12:10 +01:00
doc: fix g_task_attach_source() example
The 3rd argument of the function is not a GCallback, but a GSourceFunc. https://bugzilla.gnome.org/show_bug.cgi?id=757451
This commit is contained in:
parent
df352203d6
commit
863bffdac7
@ -198,7 +198,7 @@
|
||||
* g_object_unref (task);
|
||||
* }
|
||||
*
|
||||
* static void
|
||||
* static gboolean
|
||||
* decorator_ready (gpointer user_data)
|
||||
* {
|
||||
* GTask *task = user_data;
|
||||
@ -207,6 +207,8 @@
|
||||
* cake_decorate_async (bd->cake, bd->frosting, bd->message,
|
||||
* g_task_get_cancellable (task),
|
||||
* decorated_cb, task);
|
||||
*
|
||||
* return G_SOURCE_REMOVE;
|
||||
* }
|
||||
*
|
||||
* static void
|
||||
@ -243,8 +245,7 @@
|
||||
* source = cake_decorator_wait_source_new (cake);
|
||||
* // Attach @source to @task's GMainContext and have it call
|
||||
* // decorator_ready() when it is ready.
|
||||
* g_task_attach_source (task, source,
|
||||
* G_CALLBACK (decorator_ready));
|
||||
* g_task_attach_source (task, source, decorator_ready);
|
||||
* g_source_unref (source);
|
||||
* }
|
||||
* }
|
||||
|
Loading…
x
Reference in New Issue
Block a user