summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/installwindow.cpp
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2010-02-16 18:30:24 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2010-02-16 18:30:24 +0000
commite5b63c61aba1c35edd67b8024da80cbaa23aff89 (patch)
tree7cf6c8711900ef86a492829c800e1ebdd839e287 /rbutil/rbutilqt/installwindow.cpp
parent4d6b1b6eb37b2e2dd0ecc89bd7fa8c055c1f440c (diff)
downloadrockbox-e5b63c61aba1c35edd67b8024da80cbaa23aff89.zip
rockbox-e5b63c61aba1c35edd67b8024da80cbaa23aff89.tar.gz
rockbox-e5b63c61aba1c35edd67b8024da80cbaa23aff89.tar.bz2
rockbox-e5b63c61aba1c35edd67b8024da80cbaa23aff89.tar.xz
Rename InstallFrm to InstallWindowFrm.
The Install class has been renamed recently to InstallWindow. Rename the form too so it uses the same class basename again. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24698 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/installwindow.cpp')
-rw-r--r--rbutil/rbutilqt/installwindow.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/rbutil/rbutilqt/installwindow.cpp b/rbutil/rbutilqt/installwindow.cpp
index 8aefeb0..9eae0ce 100644
--- a/rbutil/rbutilqt/installwindow.cpp
+++ b/rbutil/rbutilqt/installwindow.cpp
@@ -18,7 +18,7 @@
****************************************************************************/
#include "installwindow.h"
-#include "ui_installfrm.h"
+#include "ui_installwindowfrm.h"
#include "rbzip.h"
#include "system.h"
#include "rbsettings.h"
@@ -149,7 +149,8 @@ void InstallWindow::accept()
else if(ui.radioArchived->isChecked()) {
file = SystemInfo::value(SystemInfo::DailyUrl).toString();
RbSettings::setValue(RbSettings::Build, "archived");
- myversion = "r" + ServerInfo::value(ServerInfo::DailyRevision).toString() + "-" + ServerInfo::value(ServerInfo::DailyDate).toString();
+ myversion = "r" + ServerInfo::value(ServerInfo::DailyRevision).toString()
+ + "-" + ServerInfo::value(ServerInfo::DailyDate).toString();
}
else if(ui.radioCurrent->isChecked()) {
file = SystemInfo::value(SystemInfo::BleedingUrl).toString();
@@ -270,7 +271,8 @@ void InstallWindow::setDetailsCurrent(bool show)
ui.labelDetails->setText(tr("This is the absolute up to the minute "
"Rockbox built. A current build will get updated every time "
"a change is made. Latest version is r%1 (%2).")
- .arg(ServerInfo::value(ServerInfo::BleedingRevision).toString(),ServerInfo::value(ServerInfo::BleedingDate).toString()));
+ .arg(ServerInfo::value(ServerInfo::BleedingRevision).toString(),
+ ServerInfo::value(ServerInfo::BleedingDate).toString()));
if(ServerInfo::value(ServerInfo::CurReleaseVersion).toString().isEmpty())
ui.labelNote->setText(tr("<b>This is the recommended version.</b>"));
else
@@ -303,7 +305,8 @@ void InstallWindow::setDetailsArchived(bool show)
"features than the last stable release but may be much less stable. "
"Features may change regularly."));
ui.labelNote->setText(tr("<b>Note:</b> archived version is r%1 (%2).")
- .arg(ServerInfo::value(ServerInfo::DailyRevision).toString(),ServerInfo::value(ServerInfo::DailyDate).toString()));
+ .arg(ServerInfo::value(ServerInfo::DailyRevision).toString(),
+ ServerInfo::value(ServerInfo::DailyDate).toString()));
}
}