Clazy: Add second batch of SIGNAL/SLOT removal

This commit is contained in:
Felix Kauselmann
2021-06-03 16:17:07 +02:00
parent f813a018d2
commit ae8e47d863
19 changed files with 80 additions and 80 deletions

View File

@ -271,10 +271,10 @@ QWidget *YACReaderRatingDelegate::createEditor(QWidget *parent,
Q_UNUSED(option)
Q_UNUSED(index)
StarEditor *editor = new StarEditor(parent);
connect(editor, SIGNAL(editingFinished()),
this, SLOT(sendCloseEditor()));
connect(editor, SIGNAL(commitData()),
this, SLOT(sendCommitData()));
connect(editor, &StarEditor::editingFinished,
this, &YACReaderRatingDelegate::sendCloseEditor);
connect(editor, &StarEditor::commitData,
this, &YACReaderRatingDelegate::sendCommitData);
return editor;
}