Skip to content

Commit 02e0504

Browse files
Fix controls on OpenRGBClientInfoPage list not working on Qt6
1 parent 0b45eac commit 02e0504

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

qt/OpenRGBClientInfoPage/OpenRGBClientInfoPage.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ void OpenRGBClientInfoPage::UpdateInfo()
8989
QSignalMapper* signalMapperSave = new QSignalMapper(this);
9090
QSignalMapper* signalMapperRescan = new QSignalMapper(this);
9191

92-
connect(signalMapperDisconnect, SIGNAL(mapped(QObject *)), this, SLOT(onClientDisconnectButton_clicked(QObject *)));
93-
connect(signalMapperSave, SIGNAL(mapped(QObject *)), this, SLOT(onClientSaveCheckBox_clicked(QObject *)));
94-
connect(signalMapperRescan, SIGNAL(mapped(QObject *)), this, SLOT(onClientRescanButton_clicked(QObject *)));
92+
connect(signalMapperDisconnect, SIGNAL(mappedObject(QObject *)), this, SLOT(onClientDisconnectButton_clicked(QObject *)));
93+
connect(signalMapperSave, SIGNAL(mappedObject(QObject *)), this, SLOT(onClientSaveCheckBox_clicked(QObject *)));
94+
connect(signalMapperRescan, SIGNAL(mappedObject(QObject *)), this, SLOT(onClientRescanButton_clicked(QObject *)));
9595

9696
/*-------------------------------------------------*\
9797
| Get Client settings |

0 commit comments

Comments
 (0)