Fix building on Qt6

This commit is contained in:
silas 2021-03-06 06:45:58 -06:00 committed by Adam Honse
parent e46325cbea
commit 30c595c6d6
2 changed files with 7 additions and 1 deletions

View file

@ -13,6 +13,8 @@ QT +=
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
greaterThan(QT_MAJOR_VERSION, 5): DEFINES += _QT6
#-----------------------------------------------------------------------------------------------#
# Application Configuration #
#-----------------------------------------------------------------------------------------------#
@ -445,7 +447,7 @@ SOURCES +=
Controllers/FanBusController/RGBController_FanBus.cpp \
Controllers/GainwardGPUController/GainwardGPUController.cpp \
Controllers/GainwardGPUController/GainwardGPUControllerDetect.cpp \
Controllers/GainwardGPUController/RGBController_GainwardGPU.cpp \
Controllers/GainwardGPUController/RGBController_GainwardGPU.cpp \
Controllers/GalaxGPUController/GalaxGPUController.cpp \
Controllers/GalaxGPUController/GalaxGPUControllerDetect.cpp \
Controllers/GalaxGPUController/RGBController_GalaxGPU.cpp \

View file

@ -45,7 +45,11 @@ void OpenRGBSupportedDevicesPage::on_SaveButton_clicked()
void OpenRGBSupportedDevicesPage::on_Filter_textChanged(const QString &arg1)
{
#ifdef _QT6
detectorSortModel->setFilterRegularExpression(QRegularExpression(arg1 , QRegularExpression::CaseInsensitiveOption));
#else
detectorSortModel->setFilterRegExp(QRegExp(arg1, Qt::CaseInsensitive));
#endif
}
void OpenRGBSupportedDevicesPage::on_ToggleAllCheckbox_toggled(const bool checked)