summaryrefslogtreecommitdiff
authorar <ar>2004-01-07 20:25:01 (UTC)
committer ar <ar>2004-01-07 20:25:01 (UTC)
commitf1a1b0e56e676c655e9728d97cdf68d63df7f5d5 (patch) (unidiff)
tree024ccb6f1625aae56dbf2e5b08490ec55177d048
parentdd56d03c7a07ad1cf4f715ba22cbbf6b3d8392e8 (diff)
downloadopie-f1a1b0e56e676c655e9728d97cdf68d63df7f5d5.zip
opie-f1a1b0e56e676c655e9728d97cdf68d63df7f5d5.tar.gz
opie-f1a1b0e56e676c655e9728d97cdf68d63df7f5d5.tar.bz2
BugFix: #0001238 use get-Path functions from StorageInfo for mountpoints
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp17
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
@@ -62,20 +62,29 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags f
62 selectItem(applicationSettings); 62 selectItem(applicationSettings);
63 documents= new QListViewItem(backupList, "Documents", "", "Documents/"); 63 documents= new QListViewItem(backupList, "Documents", "", "Documents/");
64 selectItem(documents); 64 selectItem(documents);
65 65
66 scanForApplicationSettings(); 66 scanForApplicationSettings();
67 67
68 StorageInfo storage;
69
68 backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" ); 70 backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" );
69 if (StorageInfo::hasCf()) 71 if ( storage.hasCf() )
72 {
73 backupLocations.insert( "CF", storage.getCfPath() );
74 qDebug( "Cf Path: " + storage.getCfPath() );
75 }
76 if ( storage.hasSd() )
70 { 77 {
71 backupLocations.insert("CF", "/mnt/cf"); 78 backupLocations.insert( "SD", storage.getSdPath() );
79 qDebug( " Sd Path: " + storage.getSdPath() );
72 } 80 }
73 if (StorageInfo::hasSd() || StorageInfo::hasMmc()) 81 if ( storage.hasMmc() )
74 { 82 {
75 backupLocations.insert("SD", "/mnt/card"); 83 backupLocations.insert( "MMC", storage.getMmcPath() );
84 qDebug( "Mmc Path: " + storage.getMmcPath() );
76 } 85 }
77 86
78 Config config("BackupAndRestore"); 87 Config config("BackupAndRestore");
79 //read last locations 88 //read last locations
80 config.setGroup("LastLocation"); 89 config.setGroup("LastLocation");
81 QString lastStoreLocation = config.readEntry( "LastStoreLocation", "" ); 90 QString lastStoreLocation = config.readEntry( "LastStoreLocation", "" );