From 06ee26166710b56b2dc9180bd9917714fed505af Mon Sep 17 00:00:00 2001 From: Gianfranco Costamagna Date: Tue, 6 Oct 2015 07:22:01 +0200 Subject: [PATCH] Fix warning about unsigned int --- clientgui/ProjectInfoPage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clientgui/ProjectInfoPage.cpp b/clientgui/ProjectInfoPage.cpp index 426d620230..115a6ad06b 100644 --- a/clientgui/ProjectInfoPage.cpp +++ b/clientgui/ProjectInfoPage.cpp @@ -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; iprojects.size(); i++) { + for (unsigned int i=0; iprojects.size(); i++) { wxString strGeneralArea = wxGetTranslation(wxString(m_apl->projects[i]->general_area.c_str(), wxConvUTF8)); aCategories.Add(strGeneralArea); }