From 00ff3c6339b574ecd1f77cd7a0ef5ff052a971ce Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Tue, 4 Mar 2025 13:26:47 +0000 Subject: [PATCH] gsettings: Add missing (nullable) annotations to g_settings_bind_with_mapping() Signed-off-by: Philip Withnall --- gio/gsettings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gio/gsettings.c b/gio/gsettings.c index b26411f5d..704b8c885 100644 --- a/gio/gsettings.c +++ b/gio/gsettings.c @@ -2885,9 +2885,9 @@ g_settings_bind (GSettings *settings, * @object: (type GObject.Object): a #GObject * @property: the name of the property to bind * @flags: flags for the binding - * @get_mapping: a function that gets called to convert values + * @get_mapping: (nullable): a function that gets called to convert values * from @settings to @object, or %NULL to use the default GIO mapping - * @set_mapping: a function that gets called to convert values + * @set_mapping: (nullable): a function that gets called to convert values * from @object to @settings, or %NULL to use the default GIO mapping * @user_data: data that gets passed to @get_mapping and @set_mapping * @destroy: #GDestroyNotify function for @user_data