qtmobility/plugins/contacts/symbian/src/filtering/cntsymbiansrvconnection.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 11 06b8e2af4411
--- a/qtmobility/plugins/contacts/symbian/src/filtering/cntsymbiansrvconnection.cpp	Fri Apr 16 15:51:22 2010 +0300
+++ b/qtmobility/plugins/contacts/symbian/src/filtering/cntsymbiansrvconnection.cpp	Mon May 03 13:18:40 2010 +0300
@@ -93,7 +93,7 @@
  * \return the list of matched contact ids
  */
 QList<QContactLocalId> CntSymbianSrvConnection::searchContacts(const QString& sqlQuery, 
-                                                       QContactManager::Error& error)
+                                                       QContactManager::Error* error)
 {
     QList<QContactLocalId> list;
     TPtrC queryPtr(reinterpret_cast<const TUint16*>(sqlQuery.utf16()));
@@ -152,12 +152,12 @@
         //Enforce server to be at system default priority EPriorityForeground
         server.SetPriority(EPriorityForeground);
         
-        // Synchronise with the server.
+        // Synchronize with the server.
         TRequestStatus reqStatus;
         server.Rendezvous(reqStatus);
         server.Resume();
         
-        // Server will call the reciprocal static synchronisation call.
+        // Server will call the reciprocal static synchronization call.
         User::WaitForRequest(reqStatus);
         server.Close();
         User::LeaveIfError(reqStatus.Int());