diff -r 4ae315f230bc -r a6539d1e8e43 predictivesearch/PcsUtils/src/CPsSettings.cpp --- a/predictivesearch/PcsUtils/src/CPsSettings.cpp Tue May 25 12:26:45 2010 +0300 +++ b/predictivesearch/PcsUtils/src/CPsSettings.cpp Wed Jun 09 09:26:27 2010 +0300 @@ -36,7 +36,6 @@ self->ConstructL(); CleanupStack::Pop(); return self; - } // ---------------------------------------------------------------------------- @@ -71,7 +70,7 @@ self->SetSortType(iSortType); // Copy the search uris - RPointerArray newUris; + RPointerArray newUris; for(TInt i =0; i < iSearchUri.Count() ; i++) { @@ -108,10 +107,9 @@ iSearchUri.ResetAndDestroy(); for(TInt i =0 ; i < aSearchUri.Count();i++) { - const HBufC* uriToAppend =aSearchUri[i]->AllocL(); + const HBufC* uriToAppend = aSearchUri[i]->AllocL(); iSearchUri.Append(uriToAppend); } - } // ---------------------------------------------------------------------------- @@ -125,7 +123,6 @@ { iDisplayFields.Append(aDisplayFields[i]); } - } // ---------------------------------------------------------------------------- @@ -152,6 +149,7 @@ { iSortType = aSortType; } + // CPsSettings::SearchUrisL // Returns the list of URIs configured to search from. // ---------------------------------------------------------------------------- @@ -175,7 +173,6 @@ { aDisplayFields.Append(iDisplayFields[i]); } - } // ---------------------------------------------------------------------------- @@ -186,6 +183,7 @@ { return iMaxResults; } + // ---------------------------------------------------------------------------- // CPsSettings::GetSortType // Returns the sort type based on which results will be sorted. @@ -232,7 +230,6 @@ // Cleanup memory delete grpIdBuf; grpIdBuf = NULL; - } } } @@ -287,8 +284,7 @@ TUint8 szUri = aStream.ReadUint8L(); HBufC* uri = HBufC::NewL(aStream, szUri); - iSearchUri.InsertL(uri, index); - + iSearchUri.InsertL(uri, index); } // Read number of display fields @@ -301,6 +297,4 @@ // Read Number of contacts that will be displayed to the client iMaxResults = aStream.ReadInt16L(); iSortType = (TSortType)aStream.ReadInt8L(); - } -