diff options
| author | nyamatongwe <devnull@localhost> | 2002-03-01 07:24:01 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2002-03-01 07:24:01 +0000 |
| commit | a7f65a490650406b2e73037bd2c9600070246a75 (patch) | |
| tree | a72be70f7d69e487c10dad8c990da4611cf793ba /src/Editor.h | |
| parent | 196284f04800adeaf9c3f8d4538d51350b13279a (diff) | |
| download | scintilla-mirror-a7f65a490650406b2e73037bd2c9600070246a75.tar.gz | |
Fixed problem where brace highlights were remembered in line layout cache.
Diffstat (limited to 'src/Editor.h')
| -rw-r--r-- | src/Editor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Editor.h b/src/Editor.h index 1056a95bb..8f47819b5 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -55,6 +55,7 @@ public: char *styles; char *indicators; int *positions; + char bracePreviousStyles[2]; // Wrapped line support int widthLine; @@ -75,6 +76,9 @@ public: } } void SetLineStart(int line, int start); + void SetBracesHighlight(Range rangeLine, Position braces[], + char bracesMatchStyle, int xHighlight); + void RestoreBracesHighlight(Range rangeLine, Position braces[]); }; /** |
