author | hash <hash> | 2002-08-15 11:31:32 (UTC) |
---|---|---|
committer | hash <hash> | 2002-08-15 11:31:32 (UTC) |
commit | a7fed733255d72bfca9ed0962c5ea190e0f6200b (patch) (side-by-side diff) | |
tree | 2b352019c995e52a546988fc547af91bed1d4574 /inputmethods/multikey | |
parent | dd6319831448313a03f2a80e08d5e170a511c676 (diff) | |
download | opie-a7fed733255d72bfca9ed0962c5ea190e0f6200b.zip opie-a7fed733255d72bfca9ed0962c5ea190e0f6200b.tar.gz opie-a7fed733255d72bfca9ed0962c5ea190e0f6200b.tar.bz2 |
fixed that thing
-rw-r--r-- | inputmethods/multikey/configdlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inputmethods/multikey/configdlg.cpp b/inputmethods/multikey/configdlg.cpp index 6ec8d0e..f23bf1c 100644 --- a/inputmethods/multikey/configdlg.cpp +++ b/inputmethods/multikey/configdlg.cpp @@ -48,11 +48,11 @@ ConfigDlg::ConfigDlg () : QTabWidget () connect(map_combo, SIGNAL(activated(int)), SLOT(setMap(int))); - QString ko(tr("/opt/opie/share/multikey/ko.keymap")); + QString ko(tr(QPEApplication::qpeDir() + "/share/multikey/ko.keymap")); map_combo->insertItem(ko); - QString en(tr("/opt/opie/share/multikey/en.keymap")); + QString en(tr(QPEApplication::qpeDir() + "/share/multikey/en.keymap")); map_combo->insertItem(en); - QString de(tr("/opt/opie/share/multikey/de.keymap")); + QString de(tr(QPEApplication::qpeDir() + "/share/multikey/de.keymap")); map_combo->insertItem(de); |