diff options
author | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-18 10:14:56 +0100 |
---|---|---|
committer | Pavel Holejsovsky <pholejs@src.gnome.org> | 2011-01-20 13:57:15 +0100 |
commit | 9b88eb356dde2578ff652511fcfc083b66be7b0b (patch) | |
tree | 1cb2fb0483a5a8df0027c6659bc0313fd7fea80a /gtk/gtkaccelmap.c | |
parent | 3c8fc21e9b3e035b86ae0715b62dd88085ec08a8 (diff) | |
download | gtk+-9b88eb356dde2578ff652511fcfc083b66be7b0b.tar.gz |
[GI] Add missing (scope) annotations
Diffstat (limited to 'gtk/gtkaccelmap.c')
-rw-r--r-- | gtk/gtkaccelmap.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gtk/gtkaccelmap.c b/gtk/gtkaccelmap.c index 26577738f6..32d8c796a2 100644 --- a/gtk/gtkaccelmap.c +++ b/gtk/gtkaccelmap.c @@ -807,8 +807,8 @@ gtk_accel_map_save (const gchar *file_name) /** * gtk_accel_map_foreach: * @data: data to be passed into @foreach_func - * @foreach_func: function to be executed for each accel map entry which - * is not filtered out + * @foreach_func: (scope call): function to be executed for each accel + * map entry which is not filtered out * * Loops over the entries in the accelerator map whose accel path * doesn't match any of the filters added with gtk_accel_map_add_filter(), @@ -844,7 +844,8 @@ gtk_accel_map_foreach (gpointer data, /** * gtk_accel_map_foreach_unfiltered: * @data: data to be passed into @foreach_func - * @foreach_func: function to be executed for each accel map entry + * @foreach_func: (scope call): function to be executed for each accel + * map entry * * Loops over all entries in the accelerator map, and execute * @foreach_func on each. The signature of @foreach_func is that of |