mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
Simplify code (use + operator to concatenate strings instead of Printf()). Please revert if use of Printf was intentional.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13612 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
71eedc7a5b
commit
1bc4ce9a0a
8 changed files with 224 additions and 255 deletions
|
|
@ -528,9 +528,7 @@ void rockboxInstallDlg::CreateControls()
|
|||
wxBoxSizer3->Add(WxStaticText1,0,wxGROW | wxALL,5);
|
||||
|
||||
wxArrayString array;
|
||||
wxString buf;
|
||||
buf.Printf(wxT("Rockbox stable version (%s)") , gv->last_release.c_str());
|
||||
array.Add(buf);
|
||||
array.Add(wxT("Rockbox stable version (") + gv->last_release + wxT(")"));
|
||||
array.Add(wxT("Archived Build"));
|
||||
array.Add(wxT("Current Build "));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue