summaryrefslogtreecommitdiff
path: root/rbutil/wizard_pages.cpp
diff options
context:
space:
mode:
authorDominik Wenger <domonoky@googlemail.com>2007-03-01 17:22:49 +0000
committerDominik Wenger <domonoky@googlemail.com>2007-03-01 17:22:49 +0000
commitba7d27786d1af8d3843edde0fb3cea5be4a2cb37 (patch)
tree3cb4cce087bbc6ac7a80132ffd48677cc18c65ad /rbutil/wizard_pages.cpp
parent7230674b5dc955120780535c83260b1c6e67aeaa (diff)
downloadrockbox-ba7d27786d1af8d3843edde0fb3cea5be4a2cb37.tar.gz
rockbox-ba7d27786d1af8d3843edde0fb3cea5be4a2cb37.zip
Fix for the Bootloader installation for H10, thanks to barrywardell
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12537 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/wizard_pages.cpp')
-rw-r--r--rbutil/wizard_pages.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/rbutil/wizard_pages.cpp b/rbutil/wizard_pages.cpp
index e7eab77f4c..53d56634e8 100644
--- a/rbutil/wizard_pages.cpp
+++ b/rbutil/wizard_pages.cpp
@@ -481,8 +481,8 @@ wxBuildPage::wxBuildPage(wxWizard *parent) : wxWizardPageSimple(parent)
481 wxArrayString* array = new wxArrayString(); 481 wxArrayString* array = new wxArrayString();
482 buf.Printf(_("Rockbox stable version (%s)") , gv->last_release.c_str()); 482 buf.Printf(_("Rockbox stable version (%s)") , gv->last_release.c_str());
483 array->Add(buf); 483 array->Add(buf);
484 array->Add(_("Daily Build")); 484 array->Add(_("Archived Build"));
485 array->Add(_("Bleeding Edge Build ")); 485 array->Add(_("Current Build "));
486 486
487 BuildRadioBox = new wxRadioBox(this, ID_BUILD_BOX, _("Version"), 487 BuildRadioBox = new wxRadioBox(this, ID_BUILD_BOX, _("Version"),
488 wxDefaultPosition, wxDefaultSize, *array, 0, wxRA_SPECIFY_ROWS); 488 wxDefaultPosition, wxDefaultSize, *array, 0, wxRA_SPECIFY_ROWS);
@@ -539,8 +539,7 @@ void wxBuildPage::OnBuildBox(wxCommandEvent& event)
539 break; 539 break;
540 case BUILD_BLEEDING: 540 case BUILD_BLEEDING:
541 str = _("This is the absolute up to the minute Rockbox built after\n" 541 str = _("This is the absolute up to the minute Rockbox built after\n"
542 "the last change was made. This should be avoided unless the\n" 542 "the last change was made.\n\n"
543 "daily version is causing problems for some reason.\n\n"
544 "Note: This option will always download a fresh copy from the\n" 543 "Note: This option will always download a fresh copy from the\n"
545 "web server.\n"); 544 "web server.\n");
546 NoCacheCheckBox->Enable(false); 545 NoCacheCheckBox->Enable(false);