summaryrefslogtreecommitdiff
path: root/noncore
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 /noncore
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 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/bluebase.cpp2
-rw-r--r--noncore/settings/usermanager/userdialog.cpp12
2 files changed, 7 insertions, 7 deletions
diff --git a/noncore/net/opietooth/manager/bluebase.cpp b/noncore/net/opietooth/manager/bluebase.cpp
index ee01b61..90e44cb 100644
--- a/noncore/net/opietooth/manager/bluebase.cpp
+++ b/noncore/net/opietooth/manager/bluebase.cpp
@@ -157,13 +157,13 @@ void BlueBase::writeConfig()
*/
void BlueBase::writeToHciConfig()
{
owarn << "writeToHciConfig" << oendl;
HciConfWrapper hciconf ( "/etc/bluetooth/hcid.conf" );
hciconf.load();
- hciconf.setPinHelper( "/opt/QtPalmtop/bin/bluepin" );
+ hciconf.setPinHelper( QPEApplication::qpeDir() + "bin/bluepin" );
hciconf.setName( m_deviceName );
hciconf.setEncrypt( m_useEncryption );
hciconf.setAuth( m_enableAuthentification );
hciconf.setPscan( m_enablePagescan );
hciconf.setIscan( m_enableInquiryscan );
hciconf.save();
diff --git a/noncore/settings/usermanager/userdialog.cpp b/noncore/settings/usermanager/userdialog.cpp
index 3616507..9dfb2af 100644
--- a/noncore/settings/usermanager/userdialog.cpp
+++ b/noncore/settings/usermanager/userdialog.cpp
@@ -262,17 +262,17 @@ bool UserDialog::addUser(int uid, int gid)
accounts->addGroupMember(it.current()->text(0),adduserDialog->loginLineEdit->text());
}
// Copy image to pics/users/
if(!(adduserDialog->userImage.isNull()))
{
QDir d;
- if(!(d.exists("/opt/QtPalmtop/pics/users")))
+ if(!(d.exists(QPEApplication::qpeDir() + "pics/users")))
{
- d.mkdir("/opt/QtPalmtop/pics/users");
+ d.mkdir(QPEApplication::qpeDir() + "pics/users");
}
- QString filename="/opt/QtPalmtop/pics/users/"+accounts->pw_name+".png";
+ QString filename= QPEApplication::qpeDir()+"pics/users/"+accounts->pw_name+".png";
// adduserDialog->userImage=adduserDialog->userImage.smoothScale(48,48);
adduserDialog->userImage.save(filename,"PNG");
}
// Should we copy the skeleton homedirectory /etc/skel to the user's homedirectory?
accounts->findUser(adduserDialog->loginLineEdit->text());
@@ -433,17 +433,17 @@ bool UserDialog::editUser(const char *username)
}
// Copy image to pics/users/
if(!(edituserDialog->userImage.isNull()))
{
QDir d;
- if(!(d.exists("/opt/QtPalmtop/pics/users")))
+ if(!(d.exists(QPEApplication::qpeDir()+"pics/users")))
{
- d.mkdir("/opt/QtPalmtop/pics/users");
+ d.mkdir(QPEApplication::qpeDir()+"pics/users");
}
- QString filename="/opt/QtPalmtop/pics/users/"+accounts->pw_name+".png";
+ QString filename=QPEApplication::qpeDir()+"pics/users/"+accounts->pw_name+".png";
// edituserDialog->userImage=edituserDialog->userImage.smoothScale(48,48);
edituserDialog->userImage.save(filename,"PNG");
}
return true;
}