diff options
author | nyamatongwe <unknown> | 2000-06-21 02:59:25 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-06-21 02:59:25 +0000 |
commit | e7729d12b8676528ab5bfecf58d586ac1fbafeb1 (patch) | |
tree | dce2610a6c578021e13c36d3e4e2c9f4a2eb6dfc /src/ScintillaBase.cxx | |
parent | 37147e61367b4d73deae7dbd315c498cdd7c6198 (diff) | |
download | scintilla-mirror-e7729d12b8676528ab5bfecf58d586ac1fbafeb1.tar.gz |
Added indentation guide API.
View whitespace has setting to only see outside indentation.
Indentation guide highlight.
Diffstat (limited to 'src/ScintillaBase.cxx')
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 87b84f706..0f7d944fe 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -325,7 +325,7 @@ LRESULT ScintillaBase::WndProc(UINT iMessage, WPARAM wParam, LPARAM lParam) { break; case SCI_AUTOCSETSEPARATOR: - ac.SetSeparator(wParam); + ac.SetSeparator(static_cast<char>(wParam)); break; case SCI_AUTOCGETSEPARATOR: |