diff options
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/ScintillaWin.cxx | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index e5c751e93..11612fb1c 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1304,10 +1304,10 @@ void ScintillaWin::AddCharBytes(char b0, char b1) {  		UTF8FromUCS2(wcs, 1, utfval, len);  		utfval[len] = '\0';  		AddCharUTF(utfval,len); -    } else { -        AddChar(b0); -        AddChar(b1); -    } +	} else { +		AddChar(b0); +		AddChar(b1); +	}  }  void ScintillaWin::GetIntelliMouseParameters() { | 
