mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2025-01-03 02:28:53 +00:00
Fix documentation problems
This commit is contained in:
parent
965ea230e7
commit
8e9284b4bc
@ -38,7 +38,7 @@
|
||||
* lookup the items in the collection. There may not be any items exposed when
|
||||
* the collection is locked.
|
||||
*
|
||||
* @stability: Unstable
|
||||
* Stability: Unstable
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -48,7 +48,7 @@
|
||||
*
|
||||
* Items can be created with secret_item_create() or secret_service_store().
|
||||
*
|
||||
* @stability: Unstable
|
||||
* Stability: Unstable
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -832,13 +832,13 @@ on_item_deleted (GObject *source,
|
||||
}
|
||||
|
||||
/**
|
||||
* secret_collection_delete:
|
||||
* @self: a collection
|
||||
* secret_item_delete:
|
||||
* @self: an item
|
||||
* @cancellable: optional cancellation object
|
||||
* @callback: called when the operation completes
|
||||
* @user_data: data to pass to the callback
|
||||
*
|
||||
* Delete this collection.
|
||||
* Delete this item.
|
||||
*
|
||||
* This method returns immediately and completes asynchronously. The secret
|
||||
* service may prompt the user. secret_service_prompt() will be used to handle
|
||||
|
@ -38,7 +38,7 @@
|
||||
* Each of the functions accept a variable list of attributes names and their
|
||||
* values. Include a %NULL to terminate the list of attributes.
|
||||
*
|
||||
* @stability: Stable
|
||||
* Stability: Stable
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
@ -233,8 +233,7 @@ secret_password_storev (const SecretSchema *schema,
|
||||
}
|
||||
|
||||
/**
|
||||
* secret_service_store_finish:
|
||||
* @self: the secret service
|
||||
* secret_password_store_finish:
|
||||
* @result: the asynchronous result passed to the callback
|
||||
* @error: location to place an error on failure
|
||||
*
|
||||
@ -969,7 +968,7 @@ secret_password_removev (const SecretSchema *schema,
|
||||
}
|
||||
|
||||
/**
|
||||
* secret_password_remove_finish
|
||||
* secret_password_remove_finish:
|
||||
* @result: the asynchronous result passed to the callback
|
||||
* @error: location to place an error on failure
|
||||
*
|
||||
|
@ -38,7 +38,7 @@
|
||||
* SecretServiceClass::prompt_async and SecretServiceClass::prompt_finish
|
||||
* virtual methods of the #SecretService class.
|
||||
*
|
||||
* @stability: Unstable
|
||||
* Stability: Unstable
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -60,7 +60,7 @@
|
||||
* }
|
||||
* </programlisting></informalexample>
|
||||
*
|
||||
* @stability: Stable
|
||||
* Stability: Stable
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -89,7 +89,7 @@
|
||||
* that are not stored by the libsecret library. Other libraries such as libgnome-keyring
|
||||
* don't store the schema name.
|
||||
*
|
||||
* @stability: Stable
|
||||
* Stability: Stable
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -65,7 +65,7 @@
|
||||
* In order to customize prompt handling, override the <literal>prompt_async</literal>
|
||||
* and <literal>prompt_finish</literal> virtual methods of the #SecretService class.
|
||||
*
|
||||
* @stability: Unstable
|
||||
* Stability: Unstable
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -28,7 +28,7 @@
|
||||
* the libsecret API is suitable for direct display to the user. It is up
|
||||
* to the application to handle them appropriately.
|
||||
*
|
||||
* @stability: Stable
|
||||
* Stability: Stable
|
||||
*/
|
||||
|
||||
/**
|
||||
|
@ -38,7 +38,7 @@
|
||||
* #SecretValue is reference counted and immutable. The secret data is only
|
||||
* freed when all references have been released via secret_value_unref().
|
||||
*
|
||||
* @stability: Unstable
|
||||
* Stability: Unstable
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -74,7 +74,7 @@ secret_value_get_type (void)
|
||||
}
|
||||
|
||||
/**
|
||||
* secret_value_new_full:
|
||||
* secret_value_new:
|
||||
* @secret: the secret data
|
||||
* @length: the length of the data
|
||||
* @content_type: the content type of the data
|
||||
@ -183,7 +183,7 @@ secret_value_get_content_type (SecretValue *value)
|
||||
}
|
||||
|
||||
/**
|
||||
* secret_value_unref:
|
||||
* secret_value_ref:
|
||||
* @value: value to reference
|
||||
*
|
||||
* Add another reference to the #SecretValue. For each reference
|
||||
|
Loading…
Reference in New Issue
Block a user