diff -r c9bf25a20c9f -r e0ec97ec3cc4 filebrowser/engine/engine.cpp --- a/filebrowser/engine/engine.cpp Fri Jun 11 13:39:09 2010 +0300 +++ b/filebrowser/engine/engine.cpp Wed Jun 23 18:13:31 2010 +0300 @@ -31,14 +31,6 @@ #include #include -// hash key selection related includes -#ifndef __SERIES60_30__ - #include - #include - #include - #include -#endif - // CONSTANTS // UID of the application const TUid KUidFileBrowser = { 0x102828D6 }; @@ -90,9 +82,6 @@ TRAP_IGNORE( LoadSettingsL() ); iFileUtils = CFileBrowserFileUtils::NewL(this); - - // get hash key selection value - GetHashKeySelectionStatus(); } // --------------------------------------------------------------------------- @@ -101,13 +90,6 @@ { } -// -------------------------------------------------------------------------------------------- - -//void CEngine::SetFileListContainer(CFileBrowserFileListContainer* aFileListContainer) -// { -// iFileListContainer = aFileListContainer; -// } - // --------------------------------------------------------------------------- void CEngine::LoadDFSValueL(CDictionaryFileStore* aDicFS, const TUid& aUid, TInt& aValue) @@ -276,39 +258,6 @@ // -------------------------------------------------------------------------------------------- -void CEngine::GetHashKeySelectionStatus() - { - TBool hashKeySelectionInUse(EFalse); - -#ifndef __SERIES60_30__ - - // get hash key selection value - TRAP_IGNORE( - CRepository* repository = CRepository::NewLC(KCRUidAknFep); - repository->Get(KAknFepHashKeySelection, hashKeySelectionInUse); - CleanupStack::PopAndDestroy(); - ); - - // even if hash key selection is in use, ignore the value in qwerty mode - if (hashKeySelectionInUse) - { - TBool qwertyMode(EFalse); - RProperty qwertyModeStatusProperty; - qwertyModeStatusProperty.Attach(KCRUidAvkon, KAknQwertyInputModeActive); - qwertyModeStatusProperty.Get(qwertyMode); - qwertyModeStatusProperty.Close(); - - if (qwertyMode) - hashKeySelectionInUse = EFalse; - } - -#endif - - iIsHashKeySelectionInUse = hashKeySelectionInUse; - } - -// -------------------------------------------------------------------------------------------- - TInt CEngine::LaunchSettingsDialogL() { TInt retValue = KErrNone;