author | eilers <eilers> | 2003-02-06 10:45:32 (UTC) |
---|---|---|
committer | eilers <eilers> | 2003-02-06 10:45:32 (UTC) |
commit | d55ed582e988f3ceb5eb25d08139aef8e432e260 (patch) (unidiff) | |
tree | e97ec0a1f7e00e781d34f22691dd2f94c39f57eb | |
parent | 51f39143a14b10b971670ad3a204af35be2564bb (diff) | |
download | opie-d55ed582e988f3ceb5eb25d08139aef8e432e260.zip opie-d55ed582e988f3ceb5eb25d08139aef8e432e260.tar.gz opie-d55ed582e988f3ceb5eb25d08139aef8e432e260.tar.bz2 |
Now we store the application subdirectories, too ! Otherwise this tool
does not help us anything !
-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index 457282a..81d7ed3 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp | |||
@@ -142,30 +142,30 @@ void BackupAndRestore::selectItem(QListViewItem *currentItem){ | |||
142 | if(currentItem->text(HEADER_BACKUP) == "B"){ | 142 | if(currentItem->text(HEADER_BACKUP) == "B"){ |
143 | currentItem->setPixmap(HEADER_NAME, Resource::loadPixmap("backup/null")); | 143 | currentItem->setPixmap(HEADER_NAME, Resource::loadPixmap("backup/null")); |
144 | currentItem->setText(HEADER_BACKUP, ""); | 144 | currentItem->setText(HEADER_BACKUP, ""); |
145 | } | 145 | } |
146 | else{ | 146 | else{ |
147 | currentItem->setPixmap(HEADER_NAME, Resource::loadPixmap("backup/check")); | 147 | currentItem->setPixmap(HEADER_NAME, Resource::loadPixmap("backup/check")); |
148 | currentItem->setText(HEADER_BACKUP, "B"); | 148 | currentItem->setText(HEADER_BACKUP, "B"); |
149 | } | 149 | } |
150 | } | 150 | } |
151 | 151 | ||
152 | void BackupAndRestore::scanForApplicationSettings(){ | 152 | void BackupAndRestore::scanForApplicationSettings(){ |
153 | QDir d(applicationSettings->text(BACKUP_LOCATION)); | 153 | QDir d(applicationSettings->text(BACKUP_LOCATION)); |
154 | d.setFilter( QDir::Files | QDir::NoSymLinks ); | 154 | d.setFilter( QDir::Dirs | QDir::Files | QDir::NoSymLinks ); |
155 | const QFileInfoList *list = d.entryInfoList(); | 155 | const QFileInfoList *list = d.entryInfoList(); |
156 | QFileInfoListIterator it( *list ); | 156 | QFileInfoListIterator it( *list ); |
157 | QFileInfo *fi; | 157 | QFileInfo *fi; |
158 | while ( (fi=it.current()) ) { | 158 | while ( (fi=it.current()) ) { |
159 | //qDebug((d.path()+fi->fileName()).latin1()); | 159 | // qDebug((d.path()+fi->fileName()).latin1()); |
160 | QListViewItem *newItem = new QListViewItem(applicationSettings, fi->fileName()); | 160 | QListViewItem *newItem = new QListViewItem(applicationSettings, fi->fileName()); |
161 | selectItem(newItem); | 161 | selectItem(newItem); |
162 | ++it; | 162 | ++it; |
163 | } | 163 | } |
164 | } | 164 | } |
165 | 165 | ||
166 | /** | 166 | /** |
167 | * The "Backup" button has been pressed. Get a list of all of the files that | 167 | * The "Backup" button has been pressed. Get a list of all of the files that |
168 | * should be backed up. If there are no files, emit and error and exit. | 168 | * should be backed up. If there are no files, emit and error and exit. |
169 | * Determine the file name to store the backup in. Backup the file(s) using | 169 | * Determine the file name to store the backup in. Backup the file(s) using |
170 | * tar and gzip --best. Report failure or success | 170 | * tar and gzip --best. Report failure or success |
171 | */ | 171 | */ |