browserui/browser/FavouritesSrc/BrowserBookmarksGotoPane.cpp
changeset 32 92a061761a7b
parent 31 868cceedabd3
child 37 481242ead638
--- a/browserui/browser/FavouritesSrc/BrowserBookmarksGotoPane.cpp	Thu Dec 17 08:47:18 2009 +0200
+++ b/browserui/browser/FavouritesSrc/BrowserBookmarksGotoPane.cpp	Thu Jan 07 12:48:02 2010 +0200
@@ -37,10 +37,6 @@
 #include <AppLayout.cdl.h>
 #include <AknLayout.cdl.h>
 
-#include <centralrepository.h>
-#include <AknFepInternalCRKeys.h>
-#include <PtiDefs.h>
-
 #include "BrowserBookmarksGotoPane.h"
 #include "BrowserUtil.h"
 #include "commonconstants.h"
@@ -569,18 +565,10 @@
 
     // In Search Mode we allow all types of inputs
     TInt editorFlags( (iSearchPaneMode ? EAknEditorFlagDefault : EAknEditorFlagLatinInputModesOnly) | EAknEditorFlagUseSCTNumericCharmap );
-#ifdef RD_INTELLIGENT_TEXT_INPUT
-    TInt physicalKeyboards = 0;
-    CRepository* aknFepRepository = CRepository::NewL( KCRUidAknFep );
-    User::LeaveIfNull( aknFepRepository );
 
-    aknFepRepository->Get( KAknFepPhysicalKeyboards,  physicalKeyboards );
-    delete aknFepRepository;
+    // Always disable T9 input for goto url
+    editorFlags = (editorFlags | EAknEditorFlagNoT9);
 
-    if ( physicalKeyboards &&   EPtiKeyboardQwerty3x11 ) {
-        editorFlags = (editorFlags | EAknEditorFlagNoT9);
-        }
-#endif
     iEditor->SetAknEditorFlags( editorFlags );