mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-23 03:52:45 -05:00
Fix warnings in rbutil. FS#6865 thanx to GodEater
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12860 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
571d3245f7
commit
151a67253c
5 changed files with 9 additions and 12 deletions
|
|
@ -743,7 +743,7 @@ void rbutilFrm::OnThemesBtn(wxCommandEvent& event)
|
|||
if (wizard->RunWizard(page1) )
|
||||
{
|
||||
bool success=true;
|
||||
for(int i=0 ;i < gv->themesToInstall.GetCount();i++)
|
||||
for(unsigned int i=0 ;i < gv->themesToInstall.GetCount();i++)
|
||||
{
|
||||
if(!InstallTheme(gv->themesToInstall[i]))
|
||||
{
|
||||
|
|
@ -811,7 +811,6 @@ void rbutilFrm::OnPortableInstall(wxCommandEvent& event)
|
|||
wxString src, dest, buf;
|
||||
wxLogVerbose(wxT("=== begin rbutilFrm::OnPortableInstall(event)"));
|
||||
wxFileSystem fs;
|
||||
wxFileConfig* buildinfo;
|
||||
wxDateSpan oneday;
|
||||
|
||||
wxWizard *wizard = new wxWizard(this, wxID_ANY,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue