Normalize signature of SIGNAL() and SLOT()

See https://stackoverflow.com/q/18091058/6335279
This commit is contained in:
Gianluca Recchia
2018-10-28 23:06:27 +01:00
parent 379c41d20c
commit 0f604aa8c7
22 changed files with 73 additions and 73 deletions

View File

@@ -69,7 +69,7 @@ AutoTypeSelectDialog::AutoTypeSelectDialog(QWidget* parent)
connect(m_view, SIGNAL(activated(QModelIndex)), SLOT(emitMatchActivated(QModelIndex)));
connect(m_view, SIGNAL(clicked(QModelIndex)), SLOT(emitMatchActivated(QModelIndex)));
connect(m_view->model(), SIGNAL(rowsRemoved(QModelIndex, int, int)), SLOT(matchRemoved()));
connect(m_view->model(), SIGNAL(rowsRemoved(QModelIndex,int,int)), SLOT(matchRemoved()));
connect(m_view, SIGNAL(rejected()), SLOT(reject()));
layout->addWidget(m_view);