Fix warning

svn-id: r16325
This commit is contained in:
Eugene Sandulenko 2004-12-25 23:19:42 +00:00
parent 02c0a25c31
commit 509f1b040f

View File

@ -489,7 +489,7 @@ void LauncherDialog::updateListing() {
const int oldSel = _list->getSelected();
_list->setList(l);
if (oldSel < l.size())
if (oldSel < (int)l.size())
_list->setSelected(oldSel); // Restore the old selection
updateButtons();
}