Skip to content

Commit 1b9ce71

Browse files
Fix warning in OpenRGBDialog.cpp
1 parent f8cc8a3 commit 1b9ce71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qt/OpenRGBDialog/OpenRGBDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1380,7 +1380,7 @@ void OpenRGBDialog::UpdateDevicesList()
13801380
| Remove all remaining device information tabs, leaving |
13811381
| other information tabs alone |
13821382
\*-----------------------------------------------------*/
1383-
for(std::size_t tab_idx = controllers.size(); tab_idx < ui->InformationTabBar->count(); tab_idx++)
1383+
for(std::size_t tab_idx = controllers.size(); tab_idx < (std::size_t)ui->InformationTabBar->count(); tab_idx++)
13841384
{
13851385
std::string type_str = ui->InformationTabBar->widget(base_tab)->metaObject()->className();
13861386
if(type_str == "Ui::OpenRGBDeviceInfoPage")

0 commit comments

Comments
 (0)