diff options
author | nyamatongwe <devnull@localhost> | 2000-04-08 11:59:28 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-08 11:59:28 +0000 |
commit | efa40dbcc958f03b539902aae87c17b138552ce0 (patch) | |
tree | bca7871b6c92dd54755b6e613fb18eba0e28c021 /src/Editor.h | |
parent | 4fe90137dc48e5ca07e9223694ab8926c9ebbf13 (diff) | |
download | scintilla-mirror-efa40dbcc958f03b539902aae87c17b138552ce0.tar.gz |
Unicode keyboard input and dragging from Scintilla.
Fixing warnings on GTK+ and uping warning level.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Editor.h b/src/Editor.h index 1dccf35c7..fe670ddd5 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -192,7 +192,8 @@ protected: // ScintillaBase subclass needs access to much of Editor void SetScrollBarsTo(PRectangle rsClient); void SetScrollBars(); - virtual void AddChar(char ch); + void AddChar(char ch); + virtual void AddCharUTF(char *s, unsigned int len); void ClearSelection(); void ClearAll(); void Cut(); |