aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-07-29 04:28:47 +0000
committernyamatongwe <unknown>2002-07-29 04:28:47 +0000
commit7eb251f179b982ae4bb017f7deab7de6bfb00dfe (patch)
tree9460267b34862f15fb957be6b256d69b32d0a46c /src
parenta03484424b279566eee0cc7e9d92ad3f69f54297 (diff)
downloadscintilla-mirror-7eb251f179b982ae4bb017f7deab7de6bfb00dfe.tar.gz
Avoid Borland warning.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 0a5fb2d66..faba66ef5 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -1544,7 +1544,7 @@ void Editor::LayoutLine(int line, Surface *surface, ViewStyle &vstyle, LineLayou
int numCharsInLine = 0;
// See if chars, styles, indicators, are all the same
bool allSame = true;
- char styleByte = 0;
+ char styleByte;
int styleMask = pdoc->stylingBitsMask;
// Check base line layout
for (int charInDoc = posLineStart; allSame && (charInDoc < posLineEnd); charInDoc++) {