From 80f40a3e5b156277f6a27f52e5c0569c72922eee Mon Sep 17 00:00:00 2001 From: Thomas Jentzsch Date: Tue, 14 Dec 2021 23:21:26 +0100 Subject: [PATCH] fixed minor compiler warning --- src/gui/NavigationWidget.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/NavigationWidget.cxx b/src/gui/NavigationWidget.cxx index 81b34627c..f3c196242 100644 --- a/src/gui/NavigationWidget.cxx +++ b/src/gui/NavigationWidget.cxx @@ -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);