diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 06:37:11 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-20 13:57:21 +0100 |
commit | 374e76a19dac87676995356f6daacb10f4bb6e36 (patch) | |
tree | a91c71d7d3766541344472d2d61eccf7bfa31804 /gdk/gdk.c | |
parent | 2fb1c064020c5db189285b1d5e8b8dcea8e9d09b (diff) | |
download | gtk+-374e76a19dac87676995356f6daacb10f4bb6e36.tar.gz |
[GI] Mark unintrospectable constructs as (skip)
Also adds 'Rename to:' annotation to some constructs replacing the
skipped ones.
Diffstat (limited to 'gdk/gdk.c')
-rw-r--r-- | gdk/gdk.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -707,7 +707,7 @@ gdk_threads_init (void) } /** - * gdk_threads_set_lock_functions: + * gdk_threads_set_lock_functions: (skip) * @enter_fn: function called to guard GDK * @leave_fn: function called to release the guard * @@ -827,6 +827,7 @@ gdk_threads_dispatch_free (gpointer data) * Return value: the ID (greater than 0) of the event source. * * Since: 2.12 + * Rename to: gdk_threads_add_idle */ guint gdk_threads_add_idle_full (gint priority, @@ -850,7 +851,7 @@ gdk_threads_add_idle_full (gint priority, } /** - * gdk_threads_add_idle: + * gdk_threads_add_idle: (skip) * @function: function to call * @data: data to pass to @function * @@ -929,6 +930,7 @@ gdk_threads_add_idle (GSourceFunc function, * Return value: the ID (greater than 0) of the event source. * * Since: 2.12 + * Rename to: gdk_threads_add_timeout */ guint gdk_threads_add_timeout_full (gint priority, @@ -954,7 +956,7 @@ gdk_threads_add_timeout_full (gint priority, } /** - * gdk_threads_add_timeout: + * gdk_threads_add_timeout: (skip) * @interval: the time between calls to the function, in milliseconds * (1/1000ths of a second) * @function: function to call @@ -995,6 +997,7 @@ gdk_threads_add_timeout (guint interval, * Return value: the ID (greater than 0) of the event source. * * Since: 2.14 + * Rename to: gdk_threads_add_timeout_seconds */ guint gdk_threads_add_timeout_seconds_full (gint priority, @@ -1020,7 +1023,7 @@ gdk_threads_add_timeout_seconds_full (gint priority, } /** - * gdk_threads_add_timeout_seconds: + * gdk_threads_add_timeout_seconds: (skip) * @interval: the time between calls to the function, in seconds * @function: function to call * @data: data to pass to @function |