forked from qt-creator/qt-creator
TextEditor: Clean up/streamline SyntaxHighlighter setup
No need for the third construction way if that's not really used by the factories anyway. Change-Id: Id3b34da5b0320babae9bef96a79bbaa52e0db06d Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
@@ -538,7 +538,7 @@ QmlJSEditorDocument::QmlJSEditorDocument()
|
||||
setId(Constants::C_QMLJSEDITOR_ID);
|
||||
connect(this, SIGNAL(tabSettingsChanged()),
|
||||
d, SLOT(invalidateFormatterCache()));
|
||||
setSyntaxHighlighter(new Highlighter(document()));
|
||||
setSyntaxHighlighter(new QmlJSHighlighter(document()));
|
||||
setIndenter(new Internal::Indenter);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user