aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-08 11:59:28 +0000
committernyamatongwe <unknown>2000-04-08 11:59:28 +0000
commit6d3d6369e79d216e20d2ef030548cf2482ac5e82 (patch)
treebca7871b6c92dd54755b6e613fb18eba0e28c021 /src/Editor.h
parent544b81845f054f23f488f758460136604735befa (diff)
downloadscintilla-mirror-6d3d6369e79d216e20d2ef030548cf2482ac5e82.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();