diff options
author | nyamatongwe <unknown> | 2011-04-29 19:48:39 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-04-29 19:48:39 +1000 |
commit | 9a5459d5b24664df3c79b9b2061fe4eeb9de36d0 (patch) | |
tree | b4c35be18bbcdbbfa70d9f0772380979140f7973 /src/PositionCache.h | |
parent | 0ae4049da9517830c556a57b196d0213d4a46bf5 (diff) | |
download | scintilla-mirror-9a5459d5b24664df3c79b9b2061fe4eeb9de36d0.tar.gz |
Use indicators to show matching braces. Feature #3290434.
From Marko Njezic.
Diffstat (limited to 'src/PositionCache.h')
-rw-r--r-- | src/PositionCache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PositionCache.h b/src/PositionCache.h index 754545877..a76da574c 100644 --- a/src/PositionCache.h +++ b/src/PositionCache.h @@ -63,8 +63,8 @@ public: bool InLine(int offset, int line) const; void SetLineStart(int line, int start); void SetBracesHighlight(Range rangeLine, Position braces[], - char bracesMatchStyle, int xHighlight); - void RestoreBracesHighlight(Range rangeLine, Position braces[]); + char bracesMatchStyle, int xHighlight, bool ignoreStyle); + void RestoreBracesHighlight(Range rangeLine, Position braces[], bool ignoreStyle); int FindBefore(int x, int lower, int upper) const; int EndLineStyle() const; }; |