diff -r 2b40d63a9c3d -r 90517678cc4f qtmobility/plugins/contacts/symbian/src/filtering/cntfilterlocalid.cpp --- a/qtmobility/plugins/contacts/symbian/src/filtering/cntfilterlocalid.cpp Fri Apr 16 15:51:22 2010 +0300 +++ b/qtmobility/plugins/contacts/symbian/src/filtering/cntfilterlocalid.cpp Mon May 03 13:18:40 2010 +0300 @@ -59,14 +59,14 @@ const QContactFilter &filter, const QList &sortOrders, bool &filterSupportedflag, - QContactManager::Error &error) + QContactManager::Error* error) { Q_UNUSED(sortOrders); Q_UNUSED(filterSupportedflag); //Check if any invalid filter is passed if(!filterSupported(filter)) { - error = QContactManager::NotSupportedError; + *error = QContactManager::NotSupportedError; return QList(); } QList idList; @@ -76,7 +76,7 @@ createSelectQuery( filter,sqlQuery,error); //fetch the contacts - if(error != QContactManager::NotSupportedError) + if(*error != QContactManager::NotSupportedError) { idList = m_srvConnection.searchContacts(sqlQuery, error); } @@ -101,13 +101,13 @@ void CntFilterLocalId::createSelectQuery(const QContactFilter& filter, QString& sqlQuery, - QContactManager::Error& error) + QContactManager::Error* error) { //Check if any invalid filter is passed if(!filterSupported(filter)) { - error = QContactManager::NotSupportedError; + *error = QContactManager::NotSupportedError; } //Not yet supported sqlQuery = "";