Skip to content

Commit a4d0b02

Browse files
rcalixteFantu
andauthored
gjs-util: Backport private closure annotations patch (#126)
From: Philip Chimento <[email protected]> Date: Sat, 27 Jul 2024 20:17:39 -0700 Subject: GjsPrivate: Fix closure annotations Apparently the closure annotation can be omitted if the parameter is named user_data. If it is needed because the parameter is not named user_data then the annotation should be on the callback argument and refer to the user data argument. Ref: https://gitlab.gnome.org/GNOME/gjs/-/commit/1df5d72d8df383199dcd88cd1d16209617bf32ca Co-authored-by: Fabio Fantoni <[email protected]>
1 parent f81c19e commit a4d0b02

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

libgjs-private/gjs-util.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ void gjs_gtk_container_child_set_property(GObject* container, GObject* child,
235235
* @store: a #GListStore
236236
* @item: the new item
237237
* @compare_func: (scope call): pairwise comparison function for sorting
238-
* @user_data: (closure): user data for @compare_func
238+
* @user_data: user data for @compare_func
239239
*
240240
* Inserts @item into @store at a position to be determined by the
241241
* @compare_func.
@@ -258,7 +258,7 @@ unsigned int gjs_list_store_insert_sorted(GListStore *store, GObject *item,
258258
* gjs_list_store_sort:
259259
* @store: a #GListStore
260260
* @compare_func: (scope call): pairwise comparison function for sorting
261-
* @user_data: (closure): user data for @compare_func
261+
* @user_data: user data for @compare_func
262262
*
263263
* Sort the items in @store according to @compare_func.
264264
*/
@@ -270,7 +270,7 @@ void gjs_list_store_sort(GListStore *store, GjsCompareDataFunc compare_func,
270270
/**
271271
* gjs_gtk_custom_sorter_new:
272272
* @sort_func: (nullable) (scope call): function to sort items
273-
* @user_data: (closure): user data for @compare_func
273+
* @user_data: user data for @sort_func
274274
* @destroy: destroy notify for @user_data
275275
*
276276
* Creates a new `GtkSorter` that works by calling @sort_func to compare items.
@@ -305,7 +305,7 @@ GObject* gjs_gtk_custom_sorter_new(GjsCompareDataFunc sort_func,
305305
* gjs_gtk_custom_sorter_set_sort_func:
306306
* @sorter: a `GtkCustomSorter`
307307
* @sort_func: (nullable) (scope call): function to sort items
308-
* @user_data: (closure): user data to pass to @sort_func
308+
* @user_data: user data to pass to @sort_func
309309
* @destroy: destroy notify for @user_data
310310
*
311311
* Sets (or unsets) the function used for sorting items.
@@ -423,7 +423,7 @@ void gjs_log_set_writer_default() {
423423
/**
424424
* gjs_log_set_writer_func:
425425
* @func: (scope notified): callback with log data
426-
* @user_data: (closure): user data for @func
426+
* @user_data: user data for @func
427427
* @user_data_free: (destroy user_data_free): destroy for @user_data
428428
*
429429
* Sets a given function as the writer function for structured logging,

libgjs-private/gjs-util.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ typedef gboolean (*GjsBindingTransformFunc)(GBinding* binding,
124124
* @target:
125125
* @target_property:
126126
* @flags:
127-
* @to_callback: (scope notified) (nullable):
128-
* @to_data: (closure to_callback):
127+
* @to_callback: (scope notified) (nullable) (closure to_data):
128+
* @to_data:
129129
* @to_notify: (destroy to_data):
130-
* @from_callback: (scope notified) (nullable):
131-
* @from_data: (closure from_callback):
130+
* @from_callback: (scope notified) (nullable) (closure from_data):
131+
* @from_data:
132132
* @from_notify: (destroy from_data):
133133
*
134134
* Returns: (transfer none):
@@ -149,11 +149,11 @@ GBinding* gjs_g_object_bind_property_full(
149149
* @target:
150150
* @target_property:
151151
* @flags:
152-
* @to_callback: (scope notified) (nullable):
153-
* @to_data: (closure to_callback):
152+
* @to_callback: (scope notified) (nullable) (closure to_data):
153+
* @to_data:
154154
* @to_notify: (destroy to_data):
155-
* @from_callback: (scope notified) (nullable):
156-
* @from_data: (closure from_callback):
155+
* @from_callback: (scope notified) (nullable) (closure from_data):
156+
* @from_data:
157157
* @from_notify: (destroy from_data):
158158
*/
159159
GJS_EXPORT

0 commit comments

Comments
 (0)