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
This commit is contained in:
Dominik Riebeling 2009-01-25 18:43:01 +00:00
parent 04b7cefd63
commit 29565c40f7
2 changed files with 1 additions and 14 deletions

View file

@ -27,7 +27,6 @@ Install::Install(RbSettings *sett,QWidget *parent) : QDialog(parent)
settings = sett; settings = sett;
ui.setupUi(this); 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.radioStable, SIGNAL(toggled(bool)), this, SLOT(setDetailsStable(bool)));
connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setDetailsCurrent(bool))); connect(ui.radioCurrent, SIGNAL(toggled(bool)), this, SLOT(setDetailsCurrent(bool)));
connect(ui.radioArchived, SIGNAL(toggled(bool)), this, SLOT(setDetailsArchived(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() void Install::accept()
{ {
logger = new ProgressLoggerGui(this); logger = new ProgressLoggerGui(this);
@ -240,12 +233,7 @@ void Install::setDetailsCurrent(bool show)
"a change is made. Latest version is r%1 (%2).") "a change is made. Latest version is r%1 (%2).")
.arg(version.value("bleed_rev"), version.value("bleed_date"))); .arg(version.value("bleed_rev"), version.value("bleed_date")));
if(version.value("rel_rev").isEmpty()) if(version.value("rel_rev").isEmpty())
ui.labelNote->setText(tr("<b>Note:</b> This option will always " ui.labelNote->setText(tr("<b>This is the recommended version.</b>"));
"download a fresh copy. "
"<b>This is the recommended version.</b>"));
else
ui.labelNote->setText(tr("<b>Note:</b> This option will always "
"download a fresh copy."));
} }
} }

View file

@ -56,7 +56,6 @@ class Install : public QDialog
void updateBackupLocation(void); void updateBackupLocation(void);
private slots: private slots:
void setCached(bool);
void setDetailsCurrent(bool); void setDetailsCurrent(bool);
void setDetailsStable(bool); void setDetailsStable(bool);
void setDetailsArchived(bool); void setDetailsArchived(bool);