aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2004-05-13 13:05:00 +0000
committernyamatongwe <devnull@localhost>2004-05-13 13:05:00 +0000
commitbea7a80173abd7a216b6770f22cad8e0b2cc8353 (patch)
tree68ea9053877db187f69ffc04f781e17a774e896c /src/Editor.h
parentbbdf01c977783d9950ec8a23d395e4cfb9ad79ab (diff)
downloadscintilla-mirror-bea7a80173abd7a216b6770f22cad8e0b2cc8353.tar.gz
Made LineLayout::styles unsigned as slightly safer
if anyone extends to allow 256 styles.
Diffstat (limited to 'src/Editor.h')
-rw-r--r--src/Editor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h
index 9e9af0ec1..b9bda04ab 100644
--- a/src/Editor.h
+++ b/src/Editor.h
@@ -63,7 +63,7 @@ public:
bool containsCaret;
int edgeColumn;
char *chars;
- char *styles;
+ unsigned char *styles;
char *indicators;
int *positions;
char bracePreviousStyles[2];