author | schurig <schurig> | 2003-06-04 10:21:09 (UTC) |
---|---|---|
committer | schurig <schurig> | 2003-06-04 10:21:09 (UTC) |
commit | f270a608c3396c076650f969c96b25d83cb7afe9 (patch) (side-by-side diff) | |
tree | 7b26a19084adf31a4bf4765eefe90c566ea35f25 | |
parent | 37db2bc4ade2b96616a7a0c01041fc65b3ef4d16 (diff) | |
download | opie-f270a608c3396c076650f969c96b25d83cb7afe9.zip opie-f270a608c3396c076650f969c96b25d83cb7afe9.tar.gz opie-f270a608c3396c076650f969c96b25d83cb7afe9.tar.bz2 |
ramses has no SD, but MMC
ramses has CF, but that slot is always occupied with a WLAN card
-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index 358f663..59e15a2 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp @@ -58,19 +58,28 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name) scanForApplicationSettings(); 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){ + +/* Ramses has a CF-Slot, but that one is internal and you have to dismount the + * the case. There's also almost always a WLAN card inserted there +*/ + backupLocations.insert("Documents", "/root/Documents"); +#if defined(QT_QWS_RAMSES) + backupLocations.insert("MMC", "/mnt/card"); +#else backupLocations.insert("CF", "/mnt/cf"); backupLocations.insert("SD", "/mnt/card"); +#endif } else{ for(int i = 0; i < totalLocations; i++){ backupLocations.insert(config.readEntry(QString("backupLocationName_%1").arg(i)), config.readEntry(QString("backupLocation_%1").arg(i))); } } QMap<QString, QString>::Iterator it; |