author | hrw <hrw> | 2005-10-16 19:00:43 (UTC) |
---|---|---|
committer | hrw <hrw> | 2005-10-16 19:00:43 (UTC) |
commit | 965a373e7685c8ae2cfc9955efe20424aa95e10c (patch) (side-by-side diff) | |
tree | 2ff27d09825648d8c7b1bb5795de5bf9beb6bb55 | |
parent | 611de84768e4825d6851dc833bd6402efd572383 (diff) | |
download | opie-965a373e7685c8ae2cfc9955efe20424aa95e10c.zip opie-965a373e7685c8ae2cfc9955efe20424aa95e10c.tar.gz opie-965a373e7685c8ae2cfc9955efe20424aa95e10c.tar.bz2 |
fixed bug #1492 - Backup and Restore does not show list of backups to restore on start
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,24 +1,25 @@ 2005-??-?? Opie 1.2.2 New Features ------------ Fixed Bugs ---------- * #1695 - Date selector use too small fontsize on VGA screen (hrw) * #1686 - opie-console lack UI setting for switching scrollbar (hrw) * #1624 - Button settngs changes are applied only after restart (hrw) + * #1492 - Backup and Restore does not show list of backups to restore on start (hrw) * n.a. - remove hardcoded font size from wellenreiter (hrw) * n.a. - added patch to build QT/E 2.3.10 with gc 4.x.x (hrw) 2005-09-11 Opie 1.2.1 New Features ------------ * OpieStumbler: Scans WiFi networks using the wireless extension scanning (skyhusker) * Opie-Reader: Support for document formats ArriereGo and Reb, add flite output (tim,pohly) * Opie-Networksettings: Add support for wlan-ng devices and improve WEP handling (Dirk Opfer) * Wellenreiter: Remove Joining networks - use OpieStumbler for that (mickeyl) diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index eadfb63..711dab3 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp @@ -93,24 +93,25 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags f //add directorys for backing up applicationSettings = new QListViewItem(backupList, "Application Settings", "", "Settings/"); selectItem(applicationSettings); applicationSettings = new QListViewItem(backupList, "Application Data", "", "Applications/"); selectItem(applicationSettings); documents= new QListViewItem(backupList, "Documents", "", "Documents/"); selectItem(documents); scanForApplicationSettings(); refreshLocations(); refreshBackupLocations(); + sourceDirChanged(restoreSource->currentItem()); // Read the list of items to ignore. QList<QString> dontBackupList; dontBackupList.setAutoDelete(true); Config config("BackupAndRestore"); config.setGroup("DontBackup"); int total = config.readNumEntry("Total", 0); for(int i = 0; i < total; i++) { dontBackupList.append(new QString(config.readEntry(QString("%1").arg(i), ""))); } |