-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index 93bedf6..1b34105 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp @@ -65,14 +65,23 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags f scanForApplicationSettings(); + StorageInfo storage; + backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" ); - if (StorageInfo::hasCf()) + if ( storage.hasCf() ) + { + backupLocations.insert( "CF", storage.getCfPath() ); + qDebug( "Cf Path: " + storage.getCfPath() ); + } + if ( storage.hasSd() ) { - backupLocations.insert("CF", "/mnt/cf"); + backupLocations.insert( "SD", storage.getSdPath() ); + qDebug( " Sd Path: " + storage.getSdPath() ); } - if (StorageInfo::hasSd() || StorageInfo::hasMmc()) + if ( storage.hasMmc() ) { - backupLocations.insert("SD", "/mnt/card"); + backupLocations.insert( "MMC", storage.getMmcPath() ); + qDebug( "Mmc Path: " + storage.getMmcPath() ); } Config config("BackupAndRestore"); |