summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/install.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/install.cpp')
-rw-r--r--rbutil/rbutilqt/install.cpp14
1 files changed, 1 insertions, 13 deletions
diff --git a/rbutil/rbutilqt/install.cpp b/rbutil/rbutilqt/install.cpp
index 0651e8ffe4..69a03f8091 100644
--- a/rbutil/rbutilqt/install.cpp
+++ b/rbutil/rbutilqt/install.cpp
@@ -27,7 +27,6 @@ Install::Install(RbSettings *sett,QWidget *parent) : QDialog(parent)
27 settings = sett; 27 settings = sett;
28 ui.setupUi(this); 28 ui.setupUi(this);
29 29
30 connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setCached(bool)));
31 connect(ui.radioStable, SIGNAL(toggled(bool)), this, SLOT(setDetailsStable(bool))); 30 connect(ui.radioStable, SIGNAL(toggled(bool)), this, SLOT(setDetailsStable(bool)));
32 connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setDetailsCurrent(bool))); 31 connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setDetailsCurrent(bool)));
33 connect(ui.radioArchived, SIGNAL(toggled(bool)), this, SLOT(setDetailsArchived(bool))); 32 connect(ui.radioArchived, SIGNAL(toggled(bool)), this, SLOT(setDetailsArchived(bool)));
@@ -88,12 +87,6 @@ void Install::backupCheckboxChanged(int state)
88} 87}
89 88
90 89
91void Install::setCached(bool cache)
92{
93 ui.checkBoxCache->setEnabled(!cache);
94}
95
96
97void Install::accept() 90void Install::accept()
98{ 91{
99 logger = new ProgressLoggerGui(this); 92 logger = new ProgressLoggerGui(this);
@@ -240,12 +233,7 @@ void Install::setDetailsCurrent(bool show)
240 "a change is made. Latest version is r%1 (%2).") 233 "a change is made. Latest version is r%1 (%2).")
241 .arg(version.value("bleed_rev"), version.value("bleed_date"))); 234 .arg(version.value("bleed_rev"), version.value("bleed_date")));
242 if(version.value("rel_rev").isEmpty()) 235 if(version.value("rel_rev").isEmpty())
243 ui.labelNote->setText(tr("<b>Note:</b> This option will always " 236 ui.labelNote->setText(tr("<b>This is the recommended version.</b>"));
244 "download a fresh copy. "
245 "<b>This is the recommended version.</b>"));
246 else
247 ui.labelNote->setText(tr("<b>Note:</b> This option will always "
248 "download a fresh copy."));
249 } 237 }
250} 238}
251 239