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