From 408fddfc612a722f2c970db9fa2e5a85f492364b Mon Sep 17 00:00:00 2001 From: Takashi Sakamoto Date: Sat, 4 Apr 2020 13:54:32 +0900 Subject: [PATCH] seq: remove 'transfer full' annoation from constructors Signed-off-by: Takashi Sakamoto --- src/seq/addr.c | 2 +- src/seq/event-fixed.c | 2 +- src/seq/event-variable.c | 2 +- src/seq/subscribe-data.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/seq/addr.c b/src/seq/addr.c index f7599b7..67950d6 100644 --- a/src/seq/addr.c +++ b/src/seq/addr.c @@ -15,7 +15,7 @@ G_DEFINE_BOXED_TYPE(ALSASeqAddr, alsaseq_addr, seq_addr_copy, g_free) * * Allocate and return an instance of ALSASeqAddr. * - * Returns: (transfer full): A #ALSASeqAddr. + * Returns: A #ALSASeqAddr. */ ALSASeqAddr *alsaseq_addr_new(guint8 client_id, guint8 port_id) { diff --git a/src/seq/event-fixed.c b/src/seq/event-fixed.c index 973f5bc..da285eb 100644 --- a/src/seq/event-fixed.c +++ b/src/seq/event-fixed.c @@ -189,7 +189,7 @@ static void alsaseq_event_fixed_init(ALSASeqEventFixed *self) * * Allocate and returns an instance of #ALSASeqEventFixed class. * - * Returns: (transfer full): A #ALSASeqEventFixed. + * Returns: A #ALSASeqEventFixed. */ ALSASeqEventFixed *alsaseq_event_fixed_new(ALSASeqEventType event_type, GError **error) diff --git a/src/seq/event-variable.c b/src/seq/event-variable.c index 537388c..2331706 100644 --- a/src/seq/event-variable.c +++ b/src/seq/event-variable.c @@ -43,7 +43,7 @@ static void alsaseq_event_variable_init(ALSASeqEventVariable *self) * * Allocate and return an instance of #ALSASeqEventVariable class. * - * Returns: (transfer full): A #ALSASeqEventVariable. + * Returns: A #ALSASeqEventVariable. */ ALSASeqEventVariable *alsaseq_event_variable_new(ALSASeqEventType event_type, GError **error) diff --git a/src/seq/subscribe-data.c b/src/seq/subscribe-data.c index 07d6ba6..4ef47b5 100644 --- a/src/seq/subscribe-data.c +++ b/src/seq/subscribe-data.c @@ -124,7 +124,7 @@ static void alsaseq_subscribe_data_init(ALSASeqSubscribeData *self) * * Allocates and returns the instance of ALSASeqSubscribeData class. * - * Returns: (transfer full): A #ALSASeqSubscribeData. + * Returns: A #ALSASeqSubscribeData. */ ALSASeqSubscribeData *alsaseq_subscribe_data_new() { -- 2.47.3