diff options
author | Johan Dahlin <johan@gnome.org> | 2009-12-03 19:15:45 -0200 |
---|---|---|
committer | Johan Dahlin <johan@gnome.org> | 2009-12-03 19:17:46 -0200 |
commit | e3d001a2bbeb825f2eea14e12247c3df681fbf49 (patch) | |
tree | c4ea994a5432a65442c07229eb887b00341311ee /gir | |
parent | 263af175f3630ac5c6b215e25d19bfb10a41253d (diff) | |
download | gobject-introspection-e3d001a2bbeb825f2eea14e12247c3df681fbf49.tar.gz |
Allow NULL to be sent in for various callbacks
Diffstat (limited to 'gir')
-rw-r--r-- | gir/glib-2.0.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gir/glib-2.0.c b/gir/glib-2.0.c index af57baac..d3ffcd52 100644 --- a/gir/glib-2.0.c +++ b/gir/glib-2.0.c @@ -78,7 +78,7 @@ * g_spawn_async: * @working_directory: (allow-none): * @envp: (allow-none): - * @child_setup: (allow-none): + * @child_setup: (scope async): (allow-none): * @user_data: (allow-none): * @child_pid: (out): */ @@ -87,7 +87,7 @@ * g_spawn_async_with_pipes: * @working_directory: (allow-none): * @envp: (allow-none): - * @child_setup: (allow-none): + * @child_setup: (scope async): (allow-none): * @user_data: (allow-none): * @child_pid: (out): * @standard_input: (out): @@ -99,7 +99,7 @@ * g_spawn_sync: * @working_directory: (allow-none): * @envp: (allow-none): - * @child_setup: (allow-none): + * @child_setup: (scope call): (allow-none): * @user_data: (allow-none): * @standard_output: (out): * @standard_error: (out): |