diff options
| author | nyamatongwe <devnull@localhost> | 2002-06-09 02:58:47 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2002-06-09 02:58:47 +0000 |
| commit | 112c4b6bb39e1069ae2ec7bb2f55a49939005957 (patch) | |
| tree | 7b0416e002a76253ad5b11abe3194edc06bd4061 /gtk/PlatGTK.cxx | |
| parent | 27e9dd738c874dacb3bc96736b855fcd9b3a7b78 (diff) | |
| download | scintilla-mirror-112c4b6bb39e1069ae2ec7bb2f55a49939005957.tar.gz | |
Compatibility with 64 bit systems.
Diffstat (limited to 'gtk/PlatGTK.cxx')
| -rw-r--r-- | gtk/PlatGTK.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index a28a7c973..8d3ad5437 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -960,6 +960,12 @@ long Platform::SendScintilla( return scintilla_send_message(SCINTILLA(w), msg, wParam, lParam); } +long Platform::SendScintillaPointer( + WindowID w, unsigned int msg, unsigned long wParam, void *lParam) { + return scintilla_send_message(SCINTILLA(w), msg, wParam, + reinterpret_cast<sptr_t>(lParam)); +} + bool Platform::IsDBCSLeadByte(int /*codePage*/, char /*ch*/) { return false; } |
