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/ScintillaBase.cxx | |
| 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/ScintillaBase.cxx')
| -rw-r--r-- | src/ScintillaBase.cxx | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index 6683c0146..80ef3097b 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -52,11 +52,11 @@ void ScintillaBase::RefreshColourPalette(Palette &pal, bool want) {  	ct.RefreshColourPalette(pal, want);  } -void ScintillaBase::AddChar(char ch) { +void ScintillaBase::AddCharUTF(char *s, unsigned int len) {  	bool acActiveBeforeCharAdded = ac.Active(); -	Editor::AddChar(ch); +	Editor::AddCharUTF(s, len);  	if (acActiveBeforeCharAdded) -		AutoCompleteChanged(ch); +		AutoCompleteChanged(s[0]);  }  void ScintillaBase::Command(int cmdId) { | 
