summaryrefslogtreecommitdiff
path: root/inputmethods
authorzecke <zecke>2004-10-16 22:50:23 (UTC)
committer zecke <zecke>2004-10-16 22:50:23 (UTC)
commit5fb6ed213aa8b4b1101082671f57db45d7b10d01 (patch) (side-by-side diff)
treea38ed0cd40d0e3960226e724c52864b64f44d000 /inputmethods
parent79c4778d1dc6050975fceeee7aab0ac0c28462ca (diff)
downloadopie-5fb6ed213aa8b4b1101082671f57db45d7b10d01.zip
opie-5fb6ed213aa8b4b1101082671f57db45d7b10d01.tar.gz
opie-5fb6ed213aa8b4b1101082671f57db45d7b10d01.tar.bz2
-Remove hardcoding of "/opt/QtPalmtop/" and use QPEApplication::qpeDir instead
In future we need a OpieStandardDir with locateFile, locateUserSetting and such
Diffstat (limited to 'inputmethods') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/dasher/QtDasherPlugin.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/inputmethods/dasher/QtDasherPlugin.cc b/inputmethods/dasher/QtDasherPlugin.cc
index 50d4539..91167c2 100644
--- a/inputmethods/dasher/QtDasherPlugin.cc
+++ b/inputmethods/dasher/QtDasherPlugin.cc
@@ -3,2 +3,3 @@
#include <qpe/global.h>
+#include <qpe/qpeapplication.h>
@@ -10,2 +11,3 @@
#include <qdialog.h>
+#include <qfile.h>
#include <qscrollview.h>
@@ -21,3 +23,3 @@ QtDasherPlugin::QtDasherPlugin(QWidget* parent, const char* name, WFlags f) : QF
interface = new CDasherInterface;
- interface->SetSystemLocation("/opt/QtPalmtop/share/dasher/");
+ interface->SetSystemLocation( QFile::encodeName(QPEApplication::qpeDir()+"share/dasher/").data() );
interface->Unpause(0);