mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-07 06:44:59 -04:00
UI: Replace remaining SIGNAL/SLOT macros
This commit is contained in:
@@ -2836,8 +2836,8 @@ void OBSBasic::ShowWhatsNew(const QString &url)
|
||||
return;
|
||||
}
|
||||
|
||||
connect(cefWidget, SIGNAL(titleChanged(const QString &)), dlg,
|
||||
SLOT(setWindowTitle(const QString &)));
|
||||
connect(cefWidget, &QCefWidget::titleChanged, dlg,
|
||||
&QDialog::setWindowTitle);
|
||||
|
||||
QPushButton *close = new QPushButton(QTStr("Close"));
|
||||
connect(close, &QAbstractButton::clicked, dlg, &QDialog::accept);
|
||||
|
||||
Reference in New Issue
Block a user