summaryrefslogtreecommitdiff
path: root/gdata/gdata-batch-operation.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdata/gdata-batch-operation.c')
-rw-r--r--gdata/gdata-batch-operation.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/gdata/gdata-batch-operation.c b/gdata/gdata-batch-operation.c
index 94e63e8a..6e78c618 100644
--- a/gdata/gdata-batch-operation.c
+++ b/gdata/gdata-batch-operation.c
@@ -90,7 +90,7 @@
* </example>
*
* Since: 0.7.0
- **/
+ */
#include <config.h>
#include <glib.h>
@@ -147,7 +147,7 @@ gdata_batch_operation_class_init (GDataBatchOperationClass *klass)
* The service this batch operation is attached to.
*
* Since: 0.7.0
- **/
+ */
g_object_class_install_property (gobject_class, PROP_SERVICE,
g_param_spec_object ("service",
"Service", "The service this batch operation is attached to.",
@@ -177,7 +177,7 @@ gdata_batch_operation_class_init (GDataBatchOperationClass *klass)
* The feed URI that this batch operation will be sent to.
*
* Since: 0.7.0
- **/
+ */
g_object_class_install_property (gobject_class, PROP_FEED_URI,
g_param_spec_string ("feed-uri",
"Feed URI", "The feed URI that this batch operation will be sent to.",
@@ -276,7 +276,7 @@ gdata_batch_operation_finalize (GObject *object)
* Return value: (transfer none): the batch operation's attached service
*
* Since: 0.7.0
- **/
+ */
GDataService *
gdata_batch_operation_get_service (GDataBatchOperation *self)
{
@@ -311,7 +311,7 @@ gdata_batch_operation_get_authorization_domain (GDataBatchOperation *self)
* Return value: the batch operation's feed URI
*
* Since: 0.7.0
- **/
+ */
const gchar *
gdata_batch_operation_get_feed_uri (GDataBatchOperation *self)
{
@@ -349,7 +349,7 @@ add_operation (GDataBatchOperation *self, GDataBatchOperationType type, GDataEnt
* Return value: the relevant #BatchOperation, or %NULL
*
* Since: 0.7.0
- **/
+ */
BatchOperation *
_gdata_batch_operation_get_operation (GDataBatchOperation *self, guint id)
{
@@ -388,7 +388,7 @@ run_callback_cb (BatchOperation *op)
* #GDataBatchOperation was run with gdata_batch_operation_run() or gdata_batch_operation_run_async().
*
* Since: 0.7.0
- **/
+ */
void
_gdata_batch_operation_run_callback (GDataBatchOperation *self, BatchOperation *op, GDataEntry *entry, GError *error)
{
@@ -458,7 +458,7 @@ operation_free (BatchOperation *op)
* Return value: operation ID for the added query, or <code class="literal">0</code>
*
* Since: 0.7.0
- **/
+ */
guint
gdata_batch_operation_add_query (GDataBatchOperation *self, const gchar *id, GType entry_type,
GDataBatchOperationCallback callback, gpointer user_data)
@@ -501,7 +501,7 @@ gdata_batch_operation_add_query (GDataBatchOperation *self, const gchar *id, GTy
* Return value: operation ID for the added insertion, or <code class="literal">0</code>
*
* Since: 0.7.0
- **/
+ */
guint
gdata_batch_operation_add_insertion (GDataBatchOperation *self, GDataEntry *entry, GDataBatchOperationCallback callback, gpointer user_data)
{
@@ -531,7 +531,7 @@ gdata_batch_operation_add_insertion (GDataBatchOperation *self, GDataEntry *entr
* Return value: operation ID for the added update, or <code class="literal">0</code>
*
* Since: 0.7.0
- **/
+ */
guint
gdata_batch_operation_add_update (GDataBatchOperation *self, GDataEntry *entry, GDataBatchOperationCallback callback, gpointer user_data)
{
@@ -561,7 +561,7 @@ gdata_batch_operation_add_update (GDataBatchOperation *self, GDataEntry *entry,
* Return value: operation ID for the added deletion, or <code class="literal">0</code>
*
* Since: 0.7.0
- **/
+ */
guint
gdata_batch_operation_add_deletion (GDataBatchOperation *self, GDataEntry *entry, GDataBatchOperationCallback callback, gpointer user_data)
{
@@ -594,7 +594,7 @@ gdata_batch_operation_add_deletion (GDataBatchOperation *self, GDataEntry *entry
* Return value: %TRUE on success, %FALSE otherwise
*
* Since: 0.7.0
- **/
+ */
gboolean
gdata_batch_operation_run (GDataBatchOperation *self, GCancellable *cancellable, GError **error)
{
@@ -757,7 +757,7 @@ run_thread (GSimpleAsyncResult *result, GDataBatchOperation *operation, GCancell
* the batch operation.
*
* Since: 0.7.0
- **/
+ */
void
gdata_batch_operation_run_async (GDataBatchOperation *self, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
{
@@ -793,7 +793,7 @@ gdata_batch_operation_run_async (GDataBatchOperation *self, GCancellable *cancel
* Return value: %TRUE on success, %FALSE otherwise
*
* Since: 0.7.0
- **/
+ */
gboolean
gdata_batch_operation_run_finish (GDataBatchOperation *self, GAsyncResult *async_result, GError **error)
{