summaryrefslogtreecommitdiff
path: root/pluma/pluma-message-bus.c
diff options
context:
space:
mode:
Diffstat (limited to 'pluma/pluma-message-bus.c')
-rw-r--r--pluma/pluma-message-bus.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/pluma/pluma-message-bus.c b/pluma/pluma-message-bus.c
index 84551bff..4cda5693 100644
--- a/pluma/pluma-message-bus.c
+++ b/pluma/pluma-message-bus.c
@@ -88,9 +88,6 @@
* NULL);
* </programlisting>
* </example>
- *
- * Since: 2.25.3
- *
*/
#define PLUMA_MESSAGE_BUS_GET_PRIVATE(object)(G_TYPE_INSTANCE_GET_PRIVATE((object), PLUMA_TYPE_MESSAGE_BUS, PlumaMessageBusPrivate))
@@ -523,7 +520,7 @@ pluma_message_bus_init (PlumaMessageBus *self)
*
* Get the default application #PlumaMessageBus.
*
- * Return value: the default #PlumaMessageBus
+ * Return value: (transfer none): the default #PlumaMessageBus
*
*/
PlumaMessageBus *
@@ -794,7 +791,7 @@ foreach_type (const gchar *key,
/**
* pluma_message_bus_foreach:
* @bus: the #PlumaMessagebus
- * @func: the callback function
+ * @func: (scope call): the callback function
* @userdata: the user data to supply to the callback function
*
* Calls @func for each message type registered on the bus
@@ -872,7 +869,7 @@ pluma_message_bus_disconnect (PlumaMessageBus *bus,
* @bus: a #PlumaMessageBus
* @object_path: the object path
* @method: the method
- * @callback: the connected callback
+ * @callback: (scope call): the connected callback
* @userdata: the userdata with which the callback was connected
*
* Disconnects a previously connected message callback by matching the
@@ -915,7 +912,7 @@ pluma_message_bus_block (PlumaMessageBus *bus,
* @bus: a #PlumaMessageBus
* @object_path: the object path
* @method: the method
- * @callback: the callback to block
+ * @callback: (scope call): the callback to block
* @userdata: the userdata with which the callback was connected
*
* Blocks evoking the callback that matches provided @callback and @userdata.
@@ -956,7 +953,7 @@ pluma_message_bus_unblock (PlumaMessageBus *bus,
* @bus: a #PlumaMessageBus
* @object_path: the object path
* @method: the method
- * @callback: the callback to block
+ * @callback: (scope call): the callback to block
* @userdata: the userdata with which the callback was connected
*
* Unblocks the callback that matches provided @callback and @userdata.
@@ -1131,7 +1128,7 @@ pluma_message_bus_send (PlumaMessageBus *bus,
* specifies key (string) value pairs used to construct the message
* arguments. To send a message asynchronously use pluma_message_bus_send().
*
- * Return value: the constructed #PlumaMessage. The caller owns a reference
+ * Return value: (transfer full): the constructed #PlumaMessage. The caller owns a reference
* to the #PlumaMessage and should call g_object_unref() when
* it is no longer needed
*/