Normalized connect()s

Change-Id: I82e891a73724cdfa0db8c84e9daeb72e00e87029
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Robert Loehning
2013-05-16 13:40:15 +02:00
committed by hjk
parent 84520b37e7
commit 1f62d7c90d
8 changed files with 16 additions and 16 deletions

View File

@@ -531,8 +531,8 @@ CPPEditorWidget::CPPEditorWidget(QWidget *parent)
this, SLOT(onDocumentUpdated()));
connect(editorSupport, SIGNAL(semanticInfoUpdated(CppTools::SemanticInfo)),
this, SLOT(updateSemanticInfo(CppTools::SemanticInfo)));
connect(editorSupport, SIGNAL(highlighterStarted(QFuture<TextEditor::HighlightingResult> *, unsigned)),
this, SLOT(highlighterStarted(QFuture<TextEditor::HighlightingResult> *, unsigned)));
connect(editorSupport, SIGNAL(highlighterStarted(QFuture<TextEditor::HighlightingResult>*,uint)),
this, SLOT(highlighterStarted(QFuture<TextEditor::HighlightingResult>*,uint)));
m_completionSupport = m_modelManager->completionSupport(editor());
}