diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2010-07-16 12:00:25 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2010-07-16 12:05:41 +0200 |
commit | 39773861bb78679d0c8ddf745ddcd06ea16d54da (patch) | |
tree | 69bddc764c48b5a3bf54f896d51a235c5d537ebe /src/plugins/projectexplorer/ioutputparser.cpp | |
parent | bece44606afff0a07ca55f25ca765c23f5cfd19f (diff) | |
download | qt-creator-39773861bb78679d0c8ddf745ddcd06ea16d54da.tar.gz |
Update signal parameter types in disconnect
Diffstat (limited to 'src/plugins/projectexplorer/ioutputparser.cpp')
-rw-r--r-- | src/plugins/projectexplorer/ioutputparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/ioutputparser.cpp b/src/plugins/projectexplorer/ioutputparser.cpp index 2ec1bfbfda..2502029170 100644 --- a/src/plugins/projectexplorer/ioutputparser.cpp +++ b/src/plugins/projectexplorer/ioutputparser.cpp @@ -59,8 +59,8 @@ void IOutputParser::appendOutputParser(IOutputParser *parser) IOutputParser *IOutputParser::takeOutputParserChain() { IOutputParser *parser = m_parser; - disconnect(parser, SIGNAL(addOutput(QString, QTextCharFormat)), - this, SLOT(outputAdded(QString, QTextCharFormat))); + disconnect(parser, SIGNAL(addOutput(QString,ProjectExplorer::BuildStep::OutputFormat)), + this, SLOT(outputAdded(QString,ProjectExplorer::BuildStep::OutputFormat))); disconnect(parser, SIGNAL(addTask(ProjectExplorer::Task)), this, SLOT(taskAdded(ProjectExplorer::Task))); m_parser = 0; |