[evolution-data-server/wip/tintou/e-cal-client-enum-doc] M!45 - e-cal-client: Make the documentation point to enum definition of E_CAL_OBJ_MOD_*
- From: Corentin Noël <corentinnoel src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server/wip/tintou/e-cal-client-enum-doc] M!45 - e-cal-client: Make the documentation point to enum definition of E_CAL_OBJ_MOD_*
- Date: Tue, 6 Oct 2020 16:53:18 +0000 (UTC)
commit edcf79490d42a267b2e7fae8347d7fa81a01f91f
Author: Corentin Noël <corentin noel collabora com>
Date: Tue Oct 6 11:14:04 2020 +0200
M!45 - e-cal-client: Make the documentation point to enum definition of E_CAL_OBJ_MOD_*
Closes https://gitlab.gnome.org/GNOME/evolution-data-server/-/merge_requests/45
src/calendar/libecal/e-cal-client.c | 32 ++++++++++++++++----------------
1 file changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/src/calendar/libecal/e-cal-client.c b/src/calendar/libecal/e-cal-client.c
index 7b85efff2..278e62a16 100644
--- a/src/calendar/libecal/e-cal-client.c
+++ b/src/calendar/libecal/e-cal-client.c
@@ -4903,9 +4903,9 @@ cal_client_modify_object_thread (GSimpleAsyncResult *simple,
* does not exist on the calendar, an error will be returned.
*
* For recurrent appointments, the @mod argument specifies what to modify,
- * if all instances (E_CAL_OBJ_MOD_ALL), a single instance (E_CAL_OBJ_MOD_THIS),
- * or a specific set of instances (E_CAL_OBJ_MOD_THIS_AND_PRIOR and
- * E_CAL_OBJ_MOD_THIS_AND_FUTURE).
+ * if all instances (#E_CAL_OBJ_MOD_ALL), a single instance (#E_CAL_OBJ_MOD_THIS),
+ * or a specific set of instances (#E_CAL_OBJ_MOD_THIS_AND_PRIOR and
+ * #E_CAL_OBJ_MOD_THIS_AND_FUTURE).
*
* The call is finished by e_cal_client_modify_object_finish() from
* the @callback.
@@ -4991,9 +4991,9 @@ e_cal_client_modify_object_finish (ECalClient *client,
* does not exist on the calendar, an error will be returned.
*
* For recurrent appointments, the @mod argument specifies what to modify,
- * if all instances (E_CAL_OBJ_MOD_ALL), a single instance (E_CAL_OBJ_MOD_THIS),
- * or a specific set of instances (E_CAL_OBJ_MOD_THISNADPRIOR and
- * E_CAL_OBJ_MOD_THIS_AND_FUTURE).
+ * if all instances (#E_CAL_OBJ_MOD_ALL), a single instance (#E_CAL_OBJ_MOD_THIS),
+ * or a specific set of instances (#E_CAL_OBJ_MOD_THIS_AND_PRIOR and
+ * #E_CAL_OBJ_MOD_THIS_AND_FUTURE).
*
* Returns: %TRUE if successful, %FALSE otherwise.
*
@@ -5059,9 +5059,9 @@ cal_client_modify_objects_thread (GSimpleAsyncResult *simple,
* does not exist on the calendar, an error will be returned.
*
* For recurrent appointments, the @mod argument specifies what to modify,
- * if all instances (E_CAL_OBJ_MOD_ALL), a single instance (E_CAL_OBJ_MOD_THIS),
- * or a specific set of instances (E_CAL_OBJ_MOD_THISNADPRIOR and
- * E_CAL_OBJ_MOD_THIS_AND_FUTURE).
+ * if all instances (#E_CAL_OBJ_MOD_ALL), a single instance (#E_CAL_OBJ_MOD_THIS),
+ * or a specific set of instances (#E_CAL_OBJ_MOD_THIS_AND_PRIOR and
+ * #E_CAL_OBJ_MOD_THIS_AND_FUTURE).
*
* The call is finished by e_cal_client_modify_objects_finish() from
* the @callback.
@@ -5148,9 +5148,9 @@ e_cal_client_modify_objects_finish (ECalClient *client,
* does not exist on the calendar, an error will be returned.
*
* For recurrent appointments, the @mod argument specifies what to modify,
- * if all instances (E_CAL_OBJ_MOD_ALL), a single instance (E_CAL_OBJ_MOD_THIS),
- * or a specific set of instances (E_CAL_OBJ_MOD_THISNADPRIOR and
- * E_CAL_OBJ_MOD_THIS_AND_FUTURE).
+ * if all instances (#E_CAL_OBJ_MOD_ALL), a single instance (#E_CAL_OBJ_MOD_THIS),
+ * or a specific set of instances (#E_CAL_OBJ_MOD_THIS_AND_PRIOR and
+ * #E_CAL_OBJ_MOD_THIS_AND_FUTURE).
*
* Returns: %TRUE if successful, %FALSE otherwise.
*
@@ -5259,7 +5259,7 @@ cal_client_remove_object_thread (GSimpleAsyncResult *simple,
* This function allows the removal of instances of a recurrent
* appointment. By using a combination of the @uid, @rid and @mod
* arguments, you can remove specific instances. If what you want
- * is to remove all instances, use %NULL @rid and E_CAL_OBJ_MOD_ALL
+ * is to remove all instances, use %NULL @rid and #E_CAL_OBJ_MOD_ALL
* for the @mod.
*
* The call is finished by e_cal_client_remove_object_finish() from
@@ -5349,7 +5349,7 @@ e_cal_client_remove_object_finish (ECalClient *client,
* This function allows the removal of instances of a recurrent
* appointment. By using a combination of the @uid, @rid and @mod
* arguments, you can remove specific instances. If what you want
- * is to remove all instances, use %NULL @rid and E_CAL_OBJ_MODE_ALL
+ * is to remove all instances, use %NULL @rid and #E_CAL_OBJ_MOD_ALL
* for the @mod.
*
* Returns: %TRUE if successful, %FALSE otherwise.
@@ -5425,7 +5425,7 @@ cal_client_remove_objects_thread (GSimpleAsyncResult *simple,
* This function allows the removal of instances of recurrent appointments.
* #ECalComponentId objects can identify specific instances (if rid is not
* %NULL). If what you want is to remove all instances, use a %NULL rid in
- * the #ECalComponentId and E_CAL_OBJ_MOD_ALL for the @mod.
+ * the #ECalComponentId and #E_CAL_OBJ_MOD_ALL for the @mod.
*
* The call is finished by e_cal_client_remove_objects_finish() from
* the @callback.
@@ -5512,7 +5512,7 @@ e_cal_client_remove_objects_finish (ECalClient *client,
* This function allows the removal of instances of recurrent
* appointments. #ECalComponentId objects can identify specific instances
* (if rid is not %NULL). If what you want is to remove all instances, use
- * a %NULL rid in the #ECalComponentId and E_CAL_OBJ_MOD_ALL for the @mod.
+ * a %NULL rid in the #ECalComponentId and #E_CAL_OBJ_MOD_ALL for the @mod.
*
* Returns: %TRUE if successful, %FALSE otherwise.
*
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]