diff -r 2a11b5b00470 -r fd64c38c277d phonebookengines/contactsmodel/cntplsql/src/csqlitelocalview.cpp --- a/phonebookengines/contactsmodel/cntplsql/src/csqlitelocalview.cpp Fri May 14 15:42:23 2010 +0300 +++ b/phonebookengines/contactsmodel/cntplsql/src/csqlitelocalview.cpp Thu May 27 12:45:19 2010 +0300 @@ -30,6 +30,9 @@ #include "cviewcontactmanager.h" #include "cntstd.h" #include +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS +#include +#endif //uncomment to test //#define __PROFILE_SORT__ @@ -607,23 +610,23 @@ #endif iOutstandingEvents.AppendL(aEvent); - // The view state is set to ENotReady when a recovery takes place, and also when the tables - // are closed, so set ready here. - if (iState == ENotReady && (aEvent.iType - == EContactDbObserverEventRecover || aEvent.iType - == EContactDbObserverEventTablesOpened)) - { + // The view state is set to ENotReady when a recovery takes place, and also when the tables + // are closed, so set ready here. + if (iState == ENotReady && (aEvent.iType + == EContactDbObserverEventRecover || aEvent.iType + == EContactDbObserverEventTablesOpened)) + { SetState(EReady); - } - // view was Initializing (sorting) before recovery or compression started! - if (iState == EInitializing && (aEvent.iType - == EContactDbObserverEventRecover || aEvent.iType - == EContactDbObserverEventCompress)) - { + } + // view was Initializing (sorting) before recovery or compression started! + if (iState == EInitializing && (aEvent.iType + == EContactDbObserverEventRecover || aEvent.iType + == EContactDbObserverEventCompress)) + { // re-read database and sort SafeResort(); - } - + } + }