mirror of
https://github.com/YACReader/yacreader
synced 2025-07-17 20:44:32 -04:00
YACReaderLibrary: Convert a bunch of widgets/dialogs to new slot syntax
This commit is contained in:
@ -117,7 +117,7 @@ ServerConfigDialog::ServerConfigDialog(QWidget *parent)
|
||||
portLabel->setStyleSheet("QLabel {color:#575757; font-size:18px; font-family: Arial;}");
|
||||
|
||||
ip = new QComboBox(this);
|
||||
connect(ip, SIGNAL(activated(const QString &)), this, SLOT(regenerateQR(const QString &)));
|
||||
connect(ip, QOverload<const QString &>::of(&QComboBox::activated), this, &ServerConfigDialog::regenerateQR);
|
||||
|
||||
ip->setFixedWidth(200);
|
||||
ip->move(332, 153);
|
||||
|
Reference in New Issue
Block a user