summaryrefslogtreecommitdiff
authoreilers <eilers>2003-11-04 10:43:54 (UTC)
committer eilers <eilers>2003-11-04 10:43:54 (UTC)
commit9b992a9790f072b76052d42f1182b1d116994061 (patch) (side-by-side diff)
treede512c71ae2def3daf14a115ebd38bc5f32ff102
parent8046118c7d4def83ef1a70628870b5ebad0534a4 (diff)
downloadopie-9b992a9790f072b76052d42f1182b1d116994061.zip
opie-9b992a9790f072b76052d42f1182b1d116994061.tar.gz
opie-9b992a9790f072b76052d42f1182b1d116994061.tar.bz2
Added home-directory patch from Andreas Richter <ar@oszine.de>
Thanks a lot !
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 1c854d9..19e7cf9 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -18,12 +18,13 @@
#include <qcombobox.h>
#include <qlist.h>
#include <stdlib.h>
#include <qregexp.h>
#include <qtextstream.h>
#include <qtextview.h>
+#include <qpe/storage.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <dirent.h>
@@ -68,16 +69,22 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags f
Config config("BackupAndRestore");
config.setGroup("General");
int totalLocations = config.readNumEntry("totalLocations",0);
//todo make less static here and use Storage class to get infos
if(totalLocations == 0){
- backupLocations.insert("Documents", "/root/Documents");
+ QString home = QDir::homeDirPath();
+ home += "/Documents";
+ backupLocations.insert("Documents", home);
+ if (StorageInfo::hasCf()) {
backupLocations.insert("CF", "/mnt/cf");
+ }
+ if (StorageInfo::hasSd || StorageInfo::hasMmc) {
backupLocations.insert("SD", "/mnt/card");
}
+ }
else{
for(int i = 0; i < totalLocations; i++){
backupLocations.insert(config.readEntry(QString("backupLocationName_%1").arg(i)),
config.readEntry(QString("backupLocation_%1").arg(i)));
}
}