phonebookui/phonebookservices/src/cntserviceproviderold2.cpp
changeset 53 e6aff7b69165
parent 50 77bc263e1626
child 61 d30183af6ca6
--- a/phonebookui/phonebookservices/src/cntserviceproviderold2.cpp	Wed Jul 21 11:37:51 2010 +0300
+++ b/phonebookui/phonebookservices/src/cntserviceproviderold2.cpp	Fri Jul 23 12:43:48 2010 +0300
@@ -49,7 +49,7 @@
     CNT_ENTRY
     // Ignore the filter parameter
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
+    mServices.setQuittable(requestInfo().isEmbedded());
     mServices.multiFetch( title, action, *this );
     CNT_EXIT
 }
@@ -64,7 +64,7 @@
     // Ignore the filter parameter
     // Ignoring fourth argument, because it's not needed. DoFetch() by old contract is only for single-fetching.
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
+    mServices.setQuittable(requestInfo().isEmbedded());
     mServices.singleFetch( title, action, *this );
     CNT_EXIT
 }
@@ -77,15 +77,15 @@
 {
     CNT_ENTRY
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
-    mServices.editCreateNew( definitionName, value, *this );
+    mServices.setQuittable(requestInfo().isEmbedded());
+    mServices.editCreateNew( definitionName, value, *this, false ); // defaultForOnlineAccountIsImpp = false
 }
 
 void CntServiceProviderOld2::editCreateNew(const QString &vCardFile)
 {
     CNT_ENTRY
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
+    mServices.setQuittable(requestInfo().isEmbedded());
     mServices.editCreateNewFromVCard( vCardFile, *this );
     CNT_EXIT
 }
@@ -98,8 +98,8 @@
 {
     CNT_ENTRY
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
-    mServices.editUpdateExisting( definitionName, value, *this );
+    mServices.setQuittable(requestInfo().isEmbedded());
+    mServices.editUpdateExisting( definitionName, value, *this, false ); // defaultForOnlineAccountIsImpp = false
     CNT_EXIT
 }
 
@@ -111,7 +111,7 @@
 {
     CNT_ENTRY
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
+    mServices.setQuittable(requestInfo().isEmbedded());
     mServices.launchContactCard( contactId, *this );
     CNT_EXIT
 }
@@ -123,7 +123,7 @@
 {
     CNT_ENTRY
     mCurrentRequestIndex = setCurrentRequestAsync();
-    mServices.setQuitable(requestInfo().isEmbedded());
+    mServices.setQuittable(requestInfo().isEmbedded());
     mServices.launchTemporaryContactCard( definitionName, value, *this ); // definitionName = field type      value = actual field value for prefilling editor
     CNT_EXIT
 }