Fix warning about unsigned int

This commit is contained in:
Gianfranco Costamagna 2015-10-06 07:22:01 +02:00
parent 0a844f5351
commit 06ee261667
No known key found for this signature in database
GPG Key ID: F34F09744E9F5DD9
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ void CProjectInfoPage::CreateControls()
// Get the project list
m_apl = new ALL_PROJECTS_LIST;
pDoc->rpc.get_all_projects_list(*m_apl);
for (int i=0; i<m_apl->projects.size(); i++) {
for (unsigned int i=0; i<m_apl->projects.size(); i++) {
wxString strGeneralArea = wxGetTranslation(wxString(m_apl->projects[i]->general_area.c_str(), wxConvUTF8));
aCategories.Add(strGeneralArea);
}