diff options
| author | nyamatongwe <unknown> | 2002-03-01 07:24:01 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-03-01 07:24:01 +0000 | 
| commit | a38426717abbb32d1f44e57a77151c3e070c943e (patch) | |
| tree | a72be70f7d69e487c10dad8c990da4611cf793ba /src/Editor.h | |
| parent | b10a306583751875611d1cb9e538065dfb89f4de (diff) | |
| download | scintilla-mirror-a38426717abbb32d1f44e57a77151c3e070c943e.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[]);  };  /**  | 
