summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2009-01-25 18:43:01 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2009-01-25 18:43:01 +0000
commit29565c40f70d8aec52714f17551ecb1e4d166801 (patch)
treea4765af2b228481b8832363305d2d8098b504655
parent04b7cefd63ab23defc313ad5accbe4aa00e0165e (diff)
downloadrockbox-29565c40f70d8aec52714f17551ecb1e4d166801.tar.gz
rockbox-29565c40f70d8aec52714f17551ecb1e4d166801.zip
Remove installation note and checkbox disabling about the current build always being downloaded -- since cache improvement this uses the cache too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19857 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--rbutil/rbutilqt/install.cpp14
-rw-r--r--rbutil/rbutilqt/install.h1
2 files changed, 1 insertions, 14 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
diff --git a/rbutil/rbutilqt/install.h b/rbutil/rbutilqt/install.h
index 6eed631956..2f116f269a 100644
--- a/rbutil/rbutilqt/install.h
+++ b/rbutil/rbutilqt/install.h
@@ -56,7 +56,6 @@ class Install : public QDialog
56 void updateBackupLocation(void); 56 void updateBackupLocation(void);
57 57
58 private slots: 58 private slots:
59 void setCached(bool);
60 void setDetailsCurrent(bool); 59 void setDetailsCurrent(bool);
61 void setDetailsStable(bool); 60 void setDetailsStable(bool);
62 void setDetailsArchived(bool); 61 void setDetailsArchived(bool);