diff options
| author | nyamatongwe <devnull@localhost> | 2000-06-21 02:59:25 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-06-21 02:59:25 +0000 | 
| commit | 6d3878dca546f21822b087d70bea23db9437c0a9 (patch) | |
| tree | dce2610a6c578021e13c36d3e4e2c9f4a2eb6dfc /src/ScintillaBase.cxx | |
| parent | 507a9f0685923e0b06597f717daa3b362db1b6ef (diff) | |
| download | scintilla-mirror-6d3878dca546f21822b087d70bea23db9437c0a9.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: | 
