[evolution-data-server/wip/mcrha/libical-glib] [Addressbook] Change target version for API changes from 3.36 to 3.34



commit 2f98845c5326decfe33ec98e84064782a24c3044
Author: Milan Crha <mcrha redhat com>
Date:   Thu Apr 25 15:54:14 2019 +0200

    [Addressbook] Change target version for API changes from 3.36 to 3.34

 .../libebook-contacts/e-book-contacts-enums.h          |  2 +-
 .../libebook-contacts/e-book-contacts-utils.c          |  6 +++---
 src/addressbook/libedata-book/e-book-backend-sync.c    | 18 +++++++++---------
 src/addressbook/libedata-book/e-book-cache.c           |  4 ++--
 src/libedataserver/e-client.c                          |  2 +-
 5 files changed, 16 insertions(+), 16 deletions(-)
---
diff --git a/src/addressbook/libebook-contacts/e-book-contacts-enums.h 
b/src/addressbook/libebook-contacts/e-book-contacts-enums.h
index 06a3e18fc..25fd0b7a5 100644
--- a/src/addressbook/libebook-contacts/e-book-contacts-enums.h
+++ b/src/addressbook/libebook-contacts/e-book-contacts-enums.h
@@ -132,7 +132,7 @@ typedef enum { /*< flags >*/
  * is the default behavior (and it is used when no other conflict resolution flag is set).
  * The flags can be ignored when the operation or the backend don't support it.
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 typedef enum { /*< flags >*/
        E_BOOK_OPERATION_FLAG_NONE                      = 0,
diff --git a/src/addressbook/libebook-contacts/e-book-contacts-utils.c 
b/src/addressbook/libebook-contacts/e-book-contacts-utils.c
index fb03480f0..fc16d544f 100644
--- a/src/addressbook/libebook-contacts/e-book-contacts-utils.c
+++ b/src/addressbook/libebook-contacts/e-book-contacts-utils.c
@@ -86,7 +86,7 @@ e_book_client_error_create (EBookClientError code,
  *   The #GError has set the custom message, or the default message for
  *   @code, when @format is %NULL.
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 GError *
 e_book_client_error_create_fmt (EBookClientError code,
@@ -119,7 +119,7 @@ e_book_client_error_create_fmt (EBookClientError code,
  *
  * Returns: an #EConflictResolution as stored in the @flags
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 EConflictResolution
 e_book_util_operation_flags_to_conflict_resolution (guint32 flags)
@@ -146,7 +146,7 @@ e_book_util_operation_flags_to_conflict_resolution (guint32 flags)
  *
  * Returns: a bit-or of #EBookOperationFlags, corresponding to the @conflict_resolution
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 guint32
 e_book_util_conflict_resolution_to_operation_flags (EConflictResolution conflict_resolution)
diff --git a/src/addressbook/libedata-book/e-book-backend-sync.c 
b/src/addressbook/libedata-book/e-book-backend-sync.c
index 852ebaea1..f5451b089 100644
--- a/src/addressbook/libedata-book/e-book-backend-sync.c
+++ b/src/addressbook/libedata-book/e-book-backend-sync.c
@@ -26,7 +26,7 @@
  * This is a descendant of the #EBookBackend, providing synchronous variants
  * of the main methods.
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 
 #include "evolution-data-server-config.h"
@@ -274,7 +274,7 @@ e_book_backend_sync_init (EBookBackendSync *backend)
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_open (EBookBackendSync *backend,
@@ -313,7 +313,7 @@ e_book_backend_sync_open (EBookBackendSync *backend,
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_refresh (EBookBackendSync *backend,
@@ -354,7 +354,7 @@ e_book_backend_sync_refresh (EBookBackendSync *backend,
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_create_contacts (EBookBackendSync *backend,
@@ -394,7 +394,7 @@ e_book_backend_sync_create_contacts (EBookBackendSync *backend,
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_modify_contacts (EBookBackendSync *backend,
@@ -434,7 +434,7 @@ e_book_backend_sync_modify_contacts (EBookBackendSync *backend,
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_remove_contacts (EBookBackendSync *backend,
@@ -475,7 +475,7 @@ e_book_backend_sync_remove_contacts (EBookBackendSync *backend,
  *
  * Returns: (transfer full): an #EContact, or %NULL
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 EContact *
 e_book_backend_sync_get_contact (EBookBackendSync *backend,
@@ -517,7 +517,7 @@ e_book_backend_sync_get_contact (EBookBackendSync *backend,
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_get_contact_list (EBookBackendSync *backend,
@@ -560,7 +560,7 @@ e_book_backend_sync_get_contact_list (EBookBackendSync *backend,
  *
  * Returns: %TRUE on success, %FALSE on failure
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_backend_sync_get_contact_list_uids (EBookBackendSync *backend,
diff --git a/src/addressbook/libedata-book/e-book-cache.c b/src/addressbook/libedata-book/e-book-cache.c
index b10beb08c..636a546ea 100644
--- a/src/addressbook/libedata-book/e-book-cache.c
+++ b/src/addressbook/libedata-book/e-book-cache.c
@@ -5185,7 +5185,7 @@ e_book_cache_get_vcard (EBookCache *book_cache,
  *
  * Returns: Whether succeeded.
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_cache_set_contact_custom_flags (EBookCache *book_cache,
@@ -5231,7 +5231,7 @@ e_book_cache_set_contact_custom_flags (EBookCache *book_cache,
  *
  * Returns: Whether succeeded.
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 gboolean
 e_book_cache_get_contact_custom_flags (EBookCache *book_cache,
diff --git a/src/libedataserver/e-client.c b/src/libedataserver/e-client.c
index aadc84c84..50fb77224 100644
--- a/src/libedataserver/e-client.c
+++ b/src/libedataserver/e-client.c
@@ -223,7 +223,7 @@ e_client_error_create (EClientError code,
  *   The #GError has set the custom message, or the default message for
  *   @code, when @format is %NULL.
  *
- * Since: 3.36
+ * Since: 3.34
  **/
 GError *
 e_client_error_create_fmt (EClientError code,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]