CppTools: Separate highlighting for function declarations and calls

Task-number: QTCREATORBUG-15564
Change-Id: Iab1b60e19448202432f98295c89769cd376aa03f
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
Orgad Shaneh
2015-10-25 23:31:20 +02:00
committed by Orgad Shaneh
parent 72e6dd2ab1
commit 246e72262c
5 changed files with 129 additions and 89 deletions

View File

@@ -56,7 +56,9 @@ public:
MacroUse,
FunctionUse,
PseudoKeywordUse,
StringUse
StringUse,
FunctionDeclarationUse,
VirtualFunctionDeclarationUse,
};
typedef std::function<QFuture<TextEditor::HighlightingResult> ()> HighlightingRunner;