mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 12:48:51 +00:00
Fix documentation warnings
This commit is contained in:
parent
eba62f9073
commit
482dc34d74
@ -226,6 +226,8 @@ secret_service_prompt_sync
|
|||||||
secret_service_set_alias
|
secret_service_set_alias
|
||||||
secret_service_set_alias_finish
|
secret_service_set_alias_finish
|
||||||
secret_service_set_alias_sync
|
secret_service_set_alias_sync
|
||||||
|
secret_service_get_collection_gtype
|
||||||
|
secret_service_get_item_gtype
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
SECRET_IS_SERVICE
|
SECRET_IS_SERVICE
|
||||||
SECRET_IS_SERVICE_CLASS
|
SECRET_IS_SERVICE_CLASS
|
||||||
|
@ -242,7 +242,7 @@ secret_item_new_for_dbus_path_finish (GAsyncResult *result,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* secret_item_new_dbus_path_sync:
|
* secret_item_new_for_dbus_path_sync:
|
||||||
* @service: (allow-none): a secret service object
|
* @service: (allow-none): a secret service object
|
||||||
* @item_path: the D-Bus path of the item
|
* @item_path: the D-Bus path of the item
|
||||||
* @flags: initialization flags for the new item
|
* @flags: initialization flags for the new item
|
||||||
@ -2394,6 +2394,29 @@ secret_service_set_alias_to_dbus_path_sync (SecretService *self,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* secret_service_prompt_at_dbus_path_sync:
|
||||||
|
* @self: the secret service
|
||||||
|
* @prompt_path: the D-Bus object path of the prompt
|
||||||
|
* @cancellable: optional cancellation object
|
||||||
|
* @return_type: (allow-none): the variant type of the prompt result
|
||||||
|
* @error: location to place error on failure
|
||||||
|
*
|
||||||
|
* Perform prompting for a #SecretPrompt.
|
||||||
|
*
|
||||||
|
* Override the #SecretServiceClass <literal>prompt_async</literal> virtual method
|
||||||
|
* to change the behavior of the propmting. The default behavior is to simply
|
||||||
|
* run secret_prompt_perform() on the prompt.
|
||||||
|
*
|
||||||
|
* Returns a variant result if the prompt was completed and not dismissed. The
|
||||||
|
* type of result depends on the action the prompt is completing, and is defined
|
||||||
|
* in the Secret Service DBus API specification.
|
||||||
|
*
|
||||||
|
* This method may block and should not be used in user interface threads.
|
||||||
|
*
|
||||||
|
* Returns: (transfer full): %NULL if the prompt was dismissed or an error occurred,
|
||||||
|
* a variant result if the prompt was successful
|
||||||
|
*/
|
||||||
GVariant *
|
GVariant *
|
||||||
secret_service_prompt_at_dbus_path_sync (SecretService *self,
|
secret_service_prompt_at_dbus_path_sync (SecretService *self,
|
||||||
const gchar *prompt_path,
|
const gchar *prompt_path,
|
||||||
|
@ -88,6 +88,10 @@
|
|||||||
* @prompt_async: called to perform asynchronous prompting when necessary
|
* @prompt_async: called to perform asynchronous prompting when necessary
|
||||||
* @prompt_finish: called to complete an asynchronous prompt operation
|
* @prompt_finish: called to complete an asynchronous prompt operation
|
||||||
* @prompt_sync: called to perform synchronous prompting when necessary
|
* @prompt_sync: called to perform synchronous prompting when necessary
|
||||||
|
* @get_collection_gtype: called to get the GObject type for collections
|
||||||
|
* instantiated by the #SecretService proxy
|
||||||
|
* @get_item_gtype: called to get the GObject type for collections
|
||||||
|
* instantiated by the #SecretService proxy
|
||||||
*
|
*
|
||||||
* The class for #SecretService.
|
* The class for #SecretService.
|
||||||
*/
|
*/
|
||||||
|
@ -31,6 +31,13 @@
|
|||||||
* Stability: Stable
|
* Stability: Stable
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SECRET_ERROR:
|
||||||
|
*
|
||||||
|
* The error domain quark which denotes libsecret specific errors from the
|
||||||
|
* #SecretError enumeration.
|
||||||
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SecretError:
|
* SecretError:
|
||||||
* @SECRET_ERROR_PROTOCOL: received an invalid data or message from the Secret
|
* @SECRET_ERROR_PROTOCOL: received an invalid data or message from the Secret
|
||||||
|
Loading…
Reference in New Issue
Block a user