diff options
author | nyamatongwe <devnull@localhost> | 2004-05-13 13:05:00 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-05-13 13:05:00 +0000 |
commit | bea7a80173abd7a216b6770f22cad8e0b2cc8353 (patch) | |
tree | 68ea9053877db187f69ffc04f781e17a774e896c /src/Editor.h | |
parent | bbdf01c977783d9950ec8a23d395e4cfb9ad79ab (diff) | |
download | scintilla-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.h | 2 |
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]; |