forked from qt-creator/qt-creator
Normalize signal & slot signatures in connection
Profiling shows Qt Creator spends 2% of its load time normalizing Change-Id: I7c38825875c8db58813792dcb86b3a88945466f7 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -51,8 +51,8 @@ PCHManager::PCHManager(QObject *parent)
|
||||
m_instance = this;
|
||||
|
||||
QObject *msgMgr = Core::MessageManager::instance();
|
||||
connect(this, SIGNAL(pchMessage(QString, Core::MessageManager::PrintToOutputPaneFlags)),
|
||||
msgMgr, SLOT(write(QString, Core::MessageManager::PrintToOutputPaneFlags)));
|
||||
connect(this, SIGNAL(pchMessage(QString,Core::MessageManager::PrintToOutputPaneFlags)),
|
||||
msgMgr, SLOT(write(QString,Core::MessageManager::PrintToOutputPaneFlags)));
|
||||
|
||||
connect(&m_pchGenerationWatcher, SIGNAL(finished()),
|
||||
this, SLOT(updateActivePCHFiles()));
|
||||
|
||||
Reference in New Issue
Block a user