docs: fix introspection annotation for secret agent callbacks (bgo #686915)

This commit is contained in:
Alberto Ruiz 2012-10-26 09:19:44 +02:00 committed by Jiří Klimeš
parent 9818415ad7
commit 80734d67f3

View file

@ -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