forked from qt-creator/qt-creator
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:
@@ -531,8 +531,8 @@ CPPEditorWidget::CPPEditorWidget(QWidget *parent)
|
|||||||
this, SLOT(onDocumentUpdated()));
|
this, SLOT(onDocumentUpdated()));
|
||||||
connect(editorSupport, SIGNAL(semanticInfoUpdated(CppTools::SemanticInfo)),
|
connect(editorSupport, SIGNAL(semanticInfoUpdated(CppTools::SemanticInfo)),
|
||||||
this, SLOT(updateSemanticInfo(CppTools::SemanticInfo)));
|
this, SLOT(updateSemanticInfo(CppTools::SemanticInfo)));
|
||||||
connect(editorSupport, SIGNAL(highlighterStarted(QFuture<TextEditor::HighlightingResult> *, unsigned)),
|
connect(editorSupport, SIGNAL(highlighterStarted(QFuture<TextEditor::HighlightingResult>*,uint)),
|
||||||
this, SLOT(highlighterStarted(QFuture<TextEditor::HighlightingResult> *, unsigned)));
|
this, SLOT(highlighterStarted(QFuture<TextEditor::HighlightingResult>*,uint)));
|
||||||
|
|
||||||
m_completionSupport = m_modelManager->completionSupport(editor());
|
m_completionSupport = m_modelManager->completionSupport(editor());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user