[SCM] Kaboom - Debian KDE 3->4 migration tool branch, master, updated. 5b3527d0fc409b9bde2c0d3e6cf06ce8a87bdfbd

Sune Vuorela pusling-guest at alioth.debian.org
Tue Feb 24 08:15:16 UTC 2009


The following commit has been merged in the master branch:
commit b9b2f810cfed37b9c1a72ab1f9e8aa0848a8666c
Author: Sune Vuorela <sune at vuorela.dk>
Date:   Tue Feb 24 09:12:25 2009 +0100

    make the backup field available every time

diff --git a/choicepage.cpp b/choicepage.cpp
index f9a93dd..cb43478 100644
--- a/choicepage.cpp
+++ b/choicepage.cpp
@@ -69,6 +69,11 @@ ChoicePage::ChoicePage(QWidget *parent) : QWizardPage(parent)
   d->clean = new RichRadioButton(tr("Start with a fresh KDE. This option will <b>remove</b> data and settings such as contacts, local stored mails, accounts in KMail and Kopete, bookmarks and other such data"),this);
   d->buttons->addButton(d->clean,MigrationTool::Clean);
   lay->addWidget(d->clean);
+  d->backup = new QCheckBox(tr("Backup existing settings from KDE3 into .kde3-backup. (Highly recommended)"));
+  registerField("backup",d->backup);
+  lay->addWidget(d->backup);
+  d->backup->hide();
+  d->backup->setChecked(false);
   if(d->haskdedir) //if no kdedir, nothing to backup.
   {
     quint64 dirsize = -1;
@@ -94,10 +99,8 @@ ChoicePage::ChoicePage(QWidget *parent) : QWizardPage(parent)
     }
     else
     {
-      d->backup = new QCheckBox(tr("Backup existing settings from KDE3 into .kde3-backup. (Highly recommended)"));
       d->backup->setChecked(true);
-      registerField("backup",d->backup);
-      lay->addWidget(d->backup);
+      d->backup->show();
     }
   }
 }

-- 
Kaboom - Debian KDE 3->4 migration tool



More information about the pkg-kde-commits mailing list