diff options
author | nyamatongwe <unknown> | 2001-06-11 11:31:26 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-06-11 11:31:26 +0000 |
commit | 1e8012568f397f9f59c729eed2d8a1ccee966519 (patch) | |
tree | 919a1244cb09819c9d9145b5d10951a420d07562 /src/Editor.h | |
parent | 11b107d831a9d9fddb3544fbe42439415eea00e9 (diff) | |
download | scintilla-mirror-1e8012568f397f9f59c729eed2d8a1ccee966519.tar.gz |
Patch from Shane Caraveo at ActiveState to notify containers of
Unicode code characters correctly.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 7ed4868fe..5f7531b47 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -249,7 +249,7 @@ protected: // ScintillaBase subclass needs access to much of Editor virtual void NotifyFocus(bool focus); virtual void NotifyParent(SCNotification scn) = 0; virtual void NotifyStyleToNeeded(int endStyleNeeded); - void NotifyChar(char ch); + void NotifyChar(int ch); void NotifyMove(int position); void NotifySavePoint(bool isSavePoint); void NotifyModifyAttempt(); |