No such signal QSignalMapper::mappedString(QString)` is the exact error
OpenRGB 用のエフェクト エンジン プラグインに取り組んでいますが、Linux でいくつかの問題が発生しました。
QCheckBox* SelectedBox = new QCheckBox();
QSignalMapper* DeviceSelectionMapper = new QSignalMapper(SelectedBox);
DeviceSelectionMapper->setMapping(SelectedBox, "DeviceName");
connect(SelectedBox,SIGNAL(clicked()),DeviceSelectionMapper,SLOT(map()));
connect(DeviceSelectionMapper,SIGNAL(mappedString(QString)),this,SLOT( DeviceSelectionChanged(QString)));
DeviceSelectionChanged は下にありますprivate slots:
また、明確にするために、これは Windows でも機能します (ちなみに、これを WSL で実行しようとしています)。