aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-03-01 07:24:01 +0000
committernyamatongwe <unknown>2002-03-01 07:24:01 +0000
commita38426717abbb32d1f44e57a77151c3e070c943e (patch)
treea72be70f7d69e487c10dad8c990da4611cf793ba /src/Editor.h
parentb10a306583751875611d1cb9e538065dfb89f4de (diff)
downloadscintilla-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.h4
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[]);
};
/**