summaryrefslogtreecommitdiff
authorleseb <leseb>2002-06-22 12:21:10 (UTC)
committer leseb <leseb>2002-06-22 12:21:10 (UTC)
commit01dce280dcbf2ffd3a3a60001a2876a872440bbb (patch) (unidiff)
treefb70e4415b14d107f51160f9ce7d6e4bf1505d7b
parent38dd150a175af073a6df068a930f597c4fa86669 (diff)
downloadopie-01dce280dcbf2ffd3a3a60001a2876a872440bbb.zip
opie-01dce280dcbf2ffd3a3a60001a2876a872440bbb.tar.gz
opie-01dce280dcbf2ffd3a3a60001a2876a872440bbb.tar.bz2
Fix a bug when config is set to a plugin not available
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/inputmethods.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/core/launcher/inputmethods.cpp b/core/launcher/inputmethods.cpp
index ac72b02..acd0d59 100644
--- a/core/launcher/inputmethods.cpp
+++ b/core/launcher/inputmethods.cpp
@@ -216,2 +216,3 @@ void InputMethods::loadInputMethods()
216 if ( !inputMethodList.isEmpty() ) { 216 if ( !inputMethodList.isEmpty() ) {
217 method = &inputMethodList[0];
217 Config cfg("qpe"); 218 Config cfg("qpe");
@@ -219,5 +220,2 @@ void InputMethods::loadInputMethods()
219 QString curMethod = cfg.readEntry("current",""); 220 QString curMethod = cfg.readEntry("current","");
220 if(curMethod.isEmpty()) {
221 method = &inputMethodList[0];
222 } else {
223 int i = 0; 221 int i = 0;
@@ -227,4 +225,2 @@ void InputMethods::loadInputMethods()
227 method = &inputMethodList[i]; 225 method = &inputMethodList[i];
228// qDebug(curMethod);
229 }
230 } 226 }