fixed minor compiler warning

This commit is contained in:
Thomas Jentzsch 2021-12-14 23:21:26 +01:00
parent 124ee44d39
commit 2b36a827ac
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ void NavigationWidget::PathWidget::setPath(const string& path)
// Add new widget to list
FolderLinkWidget* s = new FolderLinkWidget(_boss, _font, x, _y,
width, lineHeight + 2, name, curPath);
s->setID(idx);
s->setID(uInt32(idx));
s->setTarget(myTarget);
myFolderList.push_back(s);
_boss->addFocusWidget(s);