[evolution-data-server/openismus-work: 79/122] revision checking: off by default



commit 0cf2fbdcdf36a32487d8556fa4dcbe0b9eec6df2
Author: Patrick Ohly <patrick ohly intel com>
Date:   Tue Dec 4 17:03:13 2012 +0100

    revision checking: off by default
    
    Enforcing the revision check changes the behavior of EDS. Apps must be
    prepared to handle contact revisions correctly. As that is not guaranteed
    at the moment, by default the feature must be disabled.

 .../e-source-address-book-config.c                 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/addressbook/libebook-contacts/e-source-address-book-config.c b/addressbook/libebook-contacts/e-source-address-book-config.c
index 5ac0d7f..ff771bd 100644
--- a/addressbook/libebook-contacts/e-source-address-book-config.c
+++ b/addressbook/libebook-contacts/e-source-address-book-config.c
@@ -131,7 +131,7 @@ e_source_address_book_config_class_init (ESourceAddressBookConfigClass *class)
 			"revision-guards",
 			"Revision Guards",
 			"Whether to enable or disable the revision guards",
-			TRUE,
+			FALSE,
 			G_PARAM_READWRITE |
 			G_PARAM_CONSTRUCT |
 			E_SOURCE_PARAM_SETTING));
@@ -144,7 +144,7 @@ e_source_address_book_config_init (ESourceAddressBookConfig *extension)
 {
 	extension->priv = E_SOURCE_ABC_GET_PRIVATE (extension);
 	extension->priv->property_lock = g_mutex_new ();
-	extension->priv->revision_guards = TRUE;
+	extension->priv->revision_guards = FALSE;
 }
 
 /**



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