Skip to content
Snippets Groups Projects
Commit bece4460 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Use cannonical form in SIGNAL/SLOT macros

parent 0931948c
No related branches found
No related tags found
No related merge requests found
...@@ -50,8 +50,8 @@ void IOutputParser::appendOutputParser(IOutputParser *parser) ...@@ -50,8 +50,8 @@ void IOutputParser::appendOutputParser(IOutputParser *parser)
} }
m_parser = parser; m_parser = parser;
connect(parser, SIGNAL(addOutput(QString, ProjectExplorer::BuildStep::OutputFormat)), connect(parser, SIGNAL(addOutput(QString,ProjectExplorer::BuildStep::OutputFormat)),
this, SLOT(outputAdded(QString, ProjectExplorer::BuildStep::OutputFormat)), Qt::DirectConnection); this, SLOT(outputAdded(QString,ProjectExplorer::BuildStep::OutputFormat)), Qt::DirectConnection);
connect(parser, SIGNAL(addTask(ProjectExplorer::Task)), connect(parser, SIGNAL(addTask(ProjectExplorer::Task)),
this, SLOT(taskAdded(ProjectExplorer::Task)), Qt::DirectConnection); this, SLOT(taskAdded(ProjectExplorer::Task)), Qt::DirectConnection);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment