From 29565c40f70d8aec52714f17551ecb1e4d166801 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Sun, 25 Jan 2009 18:43:01 +0000 Subject: 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 --- rbutil/rbutilqt/install.cpp | 14 +------------- rbutil/rbutilqt/install.h | 1 - 2 files changed, 1 insertion(+), 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) settings = sett; ui.setupUi(this); - connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setCached(bool))); connect(ui.radioStable, SIGNAL(toggled(bool)), this, SLOT(setDetailsStable(bool))); connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setDetailsCurrent(bool))); connect(ui.radioArchived, SIGNAL(toggled(bool)), this, SLOT(setDetailsArchived(bool))); @@ -88,12 +87,6 @@ void Install::backupCheckboxChanged(int state) } -void Install::setCached(bool cache) -{ - ui.checkBoxCache->setEnabled(!cache); -} - - void Install::accept() { logger = new ProgressLoggerGui(this); @@ -240,12 +233,7 @@ void Install::setDetailsCurrent(bool show) "a change is made. Latest version is r%1 (%2).") .arg(version.value("bleed_rev"), version.value("bleed_date"))); if(version.value("rel_rev").isEmpty()) - ui.labelNote->setText(tr("Note: This option will always " - "download a fresh copy. " - "This is the recommended version.")); - else - ui.labelNote->setText(tr("Note: This option will always " - "download a fresh copy.")); + ui.labelNote->setText(tr("This is the recommended version.")); } } 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 void updateBackupLocation(void); private slots: - void setCached(bool); void setDetailsCurrent(bool); void setDetailsStable(bool); void setDetailsArchived(bool); -- cgit v1.2.3