From 1b9ce719f8a211ecaaddeb8c00fdb0a2afccc93f Mon Sep 17 00:00:00 2001 From: Adam Honse Date: Fri, 17 Jan 2025 00:12:59 -0600 Subject: [PATCH] Fix warning in OpenRGBDialog.cpp --- qt/OpenRGBDialog/OpenRGBDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/OpenRGBDialog/OpenRGBDialog.cpp b/qt/OpenRGBDialog/OpenRGBDialog.cpp index ded96533..b60dc68d 100644 --- a/qt/OpenRGBDialog/OpenRGBDialog.cpp +++ b/qt/OpenRGBDialog/OpenRGBDialog.cpp @@ -1380,7 +1380,7 @@ void OpenRGBDialog::UpdateDevicesList() | Remove all remaining device information tabs, leaving | | other information tabs alone | \*-----------------------------------------------------*/ - for(std::size_t tab_idx = controllers.size(); tab_idx < ui->InformationTabBar->count(); tab_idx++) + for(std::size_t tab_idx = controllers.size(); tab_idx < (std::size_t)ui->InformationTabBar->count(); tab_idx++) { std::string type_str = ui->InformationTabBar->widget(base_tab)->metaObject()->className(); if(type_str == "Ui::OpenRGBDeviceInfoPage")