]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/checklst/checklst.cpp
remove file lists on exit
[wxWidgets.git] / samples / checklst / checklst.cpp
index 9ae58191f42671ac7807eb608c4dadb9573f50f4..bbf3d8b96ef76c605fb8dc0a5144b30102dd7dec 100644 (file)
@@ -499,7 +499,7 @@ void CheckListBoxFrame::OnButtonMove(bool up)
         wxString label = m_pListBox->GetString(selection);
 
         int positionNew = up ? selection - 1 : selection + 2;
-        if ( positionNew < 0 || positionNew > m_pListBox->GetCount() )
+        if ( positionNew < 0 || positionNew > (int)m_pListBox->GetCount() )
         {
             wxLogStatus(this, wxT("Can't move this item %s"), up ? wxT("up") : wxT("down"));
         }