From 80734d67f3cf411d78353b054289b277b57e8eda Mon Sep 17 00:00:00 2001 From: Alberto Ruiz Date: Fri, 26 Oct 2012 09:19:44 +0200 Subject: [PATCH] docs: fix introspection annotation for secret agent callbacks (bgo #686915) --- libnm-glib/nm-secret-agent.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libnm-glib/nm-secret-agent.h b/libnm-glib/nm-secret-agent.h index 6aa724387c..d6b726cfce 100644 --- a/libnm-glib/nm-secret-agent.h +++ b/libnm-glib/nm-secret-agent.h @@ -101,7 +101,7 @@ typedef struct { /** * NMSecretAgentGetSecretsFunc: * @agent: the secret agent object - * @connection: the connection for which secrets were requested + * @connection: (transfer none): the connection for which secrets were requested * @secrets: (element-type utf8 GLib.HashTable): the #GHashTable containing * the requested secrets in the same format as an #NMConnection hash (as * created by nm_connection_to_hash() for example). Each key in @secrets @@ -109,7 +109,7 @@ typedef struct { * and each value should be a #GHashTable. The sub-hashes map string:#GValue * where the string is the setting property name (like "psk") and the value * is the secret - * @error: if the secrets request failed, give a descriptive error here + * @error: if the secrets request failed, give a descriptive error here * @user_data: caller-specific data to be passed to the function * * Called as a result of a request by NM to retrieve secrets. When the @@ -150,8 +150,8 @@ typedef void (*NMSecretAgentGetSecretsFunc) (NMSecretAgent *agent, /** * NMSecretAgentSaveSecretsFunc: * @agent: the secret agent object - * @connection: the connection for which secrets were to be saved - * @error: if the saving secrets failed, give a descriptive error here + * @connection: (transfer none): the connection for which secrets were to be saved + * @error: if the saving secrets failed, give a descriptive error here * @user_data: caller-specific data to be passed to the function * * Called as a result of a request by NM to save secrets. When the @@ -166,8 +166,8 @@ typedef void (*NMSecretAgentSaveSecretsFunc) (NMSecretAgent *agent, /** * NMSecretAgentDeleteSecretsFunc: * @agent: the secret agent object - * @connection: the connection for which secrets were to be deleted - * @error: if the deleting secrets failed, give a descriptive error here + * @connection: (transfer none): the connection for which secrets were to be deleted + * @error: if the deleting secrets failed, give a descriptive error here * @user_data: caller-specific data to be passed to the function * * Called as a result of a request by NM to delete secrets. When the