mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 02:46:16 +01:00
gio: Add some missing (scope) annotations
This removes some of the gobject-introspection warnings. Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3037
This commit is contained in:
parent
7d0140eea0
commit
002f846312
@ -509,8 +509,10 @@ connection_get_cb (GObject *source_object,
|
||||
* @connection: a #GDBusConnection
|
||||
* @name: the well-known name to own
|
||||
* @flags: a set of flags from the #GBusNameOwnerFlags enumeration
|
||||
* @name_acquired_handler: (nullable): handler to invoke when @name is acquired or %NULL
|
||||
* @name_lost_handler: (nullable): handler to invoke when @name is lost or %NULL
|
||||
* @name_acquired_handler: (nullable) (scope notified): handler to invoke when
|
||||
* @name is acquired or %NULL
|
||||
* @name_lost_handler: (nullable) (scope notified): handler to invoke when @name
|
||||
* is lost or %NULL
|
||||
* @user_data: user data to pass to handlers
|
||||
* @user_data_free_func: (nullable): function for freeing @user_data or %NULL
|
||||
*
|
||||
@ -571,9 +573,12 @@ g_bus_own_name_on_connection (GDBusConnection *connection,
|
||||
* @bus_type: the type of bus to own a name on
|
||||
* @name: the well-known name to own
|
||||
* @flags: a set of flags from the #GBusNameOwnerFlags enumeration
|
||||
* @bus_acquired_handler: (nullable): handler to invoke when connected to the bus of type @bus_type or %NULL
|
||||
* @name_acquired_handler: (nullable): handler to invoke when @name is acquired or %NULL
|
||||
* @name_lost_handler: (nullable): handler to invoke when @name is lost or %NULL
|
||||
* @bus_acquired_handler: (nullable) (scope notified): handler to invoke when
|
||||
* connected to the bus of type @bus_type or %NULL
|
||||
* @name_acquired_handler: (nullable) (scope notified): handler to invoke when
|
||||
* @name is acquired or %NULL
|
||||
* @name_lost_handler: (nullable) (scope notified): handler to invoke when @name
|
||||
* is lost or %NULL
|
||||
* @user_data: user data to pass to handlers
|
||||
* @user_data_free_func: (nullable): function for freeing @user_data or %NULL
|
||||
*
|
||||
|
@ -564,8 +564,10 @@ connection_get_cb (GObject *source_object,
|
||||
* @bus_type: The type of bus to watch a name on.
|
||||
* @name: The name (well-known or unique) to watch.
|
||||
* @flags: Flags from the #GBusNameWatcherFlags enumeration.
|
||||
* @name_appeared_handler: (nullable): Handler to invoke when @name is known to exist or %NULL.
|
||||
* @name_vanished_handler: (nullable): Handler to invoke when @name is known to not exist or %NULL.
|
||||
* @name_appeared_handler: (nullable) (scope notified): Handler to invoke when
|
||||
* @name is known to exist or %NULL.
|
||||
* @name_vanished_handler: (nullable) (scope notified): Handler to invoke when
|
||||
* @name is known to not exist or %NULL.
|
||||
* @user_data: User data to pass to handlers.
|
||||
* @user_data_free_func: (nullable): Function for freeing @user_data or %NULL.
|
||||
*
|
||||
@ -653,8 +655,10 @@ g_bus_watch_name (GBusType bus_type,
|
||||
* @connection: A #GDBusConnection.
|
||||
* @name: The name (well-known or unique) to watch.
|
||||
* @flags: Flags from the #GBusNameWatcherFlags enumeration.
|
||||
* @name_appeared_handler: (nullable): Handler to invoke when @name is known to exist or %NULL.
|
||||
* @name_vanished_handler: (nullable): Handler to invoke when @name is known to not exist or %NULL.
|
||||
* @name_appeared_handler: (nullable) (scope notified): Handler to invoke when
|
||||
* @name is known to exist or %NULL.
|
||||
* @name_vanished_handler: (nullable) (scope notified): Handler to invoke when
|
||||
* @name is known to not exist or %NULL.
|
||||
* @user_data: User data to pass to handlers.
|
||||
* @user_data_free_func: (nullable): Function for freeing @user_data or %NULL.
|
||||
*
|
||||
|
@ -8825,7 +8825,7 @@ g_file_real_measure_disk_usage_finish (GFile *file,
|
||||
* @file: a #GFile
|
||||
* @flags: #GFileMeasureFlags
|
||||
* @cancellable: (nullable): optional #GCancellable
|
||||
* @progress_callback: (nullable): a #GFileMeasureProgressCallback
|
||||
* @progress_callback: (nullable) (scope call): a #GFileMeasureProgressCallback
|
||||
* @progress_data: user_data for @progress_callback
|
||||
* @disk_usage: (out) (optional): the number of bytes of disk space used
|
||||
* @num_dirs: (out) (optional): the number of directories encountered
|
||||
|
Loading…
Reference in New Issue
Block a user