aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-06-09 02:58:47 +0000
committernyamatongwe <unknown>2002-06-09 02:58:47 +0000
commit28e0c4bd3005f79d2cd6b260831d655c26f7a478 (patch)
tree7b0416e002a76253ad5b11abe3194edc06bd4061 /gtk
parent1511b05408236df30b05670faffdef2730e3caa1 (diff)
downloadscintilla-mirror-28e0c4bd3005f79d2cd6b260831d655c26f7a478.tar.gz
Compatibility with 64 bit systems.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/PlatGTK.cxx6
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;
}