aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-04-08 11:59:28 +0000
committernyamatongwe <devnull@localhost>2000-04-08 11:59:28 +0000
commitefa40dbcc958f03b539902aae87c17b138552ce0 (patch)
treebca7871b6c92dd54755b6e613fb18eba0e28c021 /src/Editor.h
parent4fe90137dc48e5ca07e9223694ab8926c9ebbf13 (diff)
downloadscintilla-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.h3
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();