diff options
author | nyamatongwe <unknown> | 2000-04-07 12:04:36 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-07 12:04:36 +0000 |
commit | 2b655a29a4e4d7e343884b85742aed8a033b6eef (patch) | |
tree | 337dc33f1d022c7a460caf1e607bac12fe6e7b61 /src/WindowAccessor.cxx | |
parent | cda547b4fc80be948f4c1a0b3973706d1ba3b8eb (diff) | |
download | scintilla-mirror-2b655a29a4e4d7e343884b85742aed8a033b6eef.tar.gz |
Changing code to ensure no warnings are produced by compilers.
Diffstat (limited to 'src/WindowAccessor.cxx')
-rw-r--r-- | src/WindowAccessor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WindowAccessor.cxx b/src/WindowAccessor.cxx index e1e8ed876..059c877bd 100644 --- a/src/WindowAccessor.cxx +++ b/src/WindowAccessor.cxx @@ -105,7 +105,7 @@ void WindowAccessor::ColourTo(unsigned int pos, int chAttr) { chFlags = 0; chAttr |= chFlags; for (unsigned int i = startSeg; i <= pos; i++) { - styleBuf[validLen++] = chAttr; + styleBuf[validLen++] = static_cast<char>(chAttr); } } } |