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:
Dominik Wenger 2007-03-20 14:37:36 +00:00
parent 571d3245f7
commit 151a67253c
5 changed files with 9 additions and 12 deletions

View file

@ -262,7 +262,7 @@ bool wxThemesPage::TransferDataFromWindow()
{
gv->themesToInstall.Clear();
for(int i=0; i < m_installTheme.GetCount(); i++)
for(unsigned int i=0; i < m_installTheme.GetCount(); i++)
{
if(m_installTheme[i])
{
@ -496,6 +496,7 @@ wxWizardPage* wxIpodLocationPage::GetPrev() const
return wxWizardPageSimple::GetPrev()->GetPrev();
}
return wxWizardPageSimple::GetPrev();
}
void wxIpodLocationPage::OnWizardPageChanging(wxWizardEvent& event)