diff options
| author | Neil <devnull@localhost> | 2016-02-09 10:19:11 +1100 |
|---|---|---|
| committer | Neil <devnull@localhost> | 2016-02-09 10:19:11 +1100 |
| commit | 9bbb5c03d3ebb0f927e60baa9f2ab57d784780ef (patch) | |
| tree | 6b009ae482c42fc7dfc8cb8079d5b76f4ba7a56e /gtk | |
| parent | 11f4f7ec6472874c15bfcc8514491583450da13f (diff) | |
| download | scintilla-mirror-9bbb5c03d3ebb0f927e60baa9f2ab57d784780ef.tar.gz | |
Fix 64-bit build on Windows which was broken in 3.6.3 as long only 32-bits.
Diffstat (limited to 'gtk')
| -rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 25bb2a947..dc5f08257 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -3051,7 +3051,7 @@ sptr_t scintilla_send_message(ScintillaObject *sci, unsigned int iMessage, uptr_ return psci->WndProc(iMessage, wParam, lParam); } -sptr_t scintilla_object_send_message(ScintillaObject *sci, unsigned int iMessage, uptr_t wParam, sptr_t lParam) { +gintptr scintilla_object_send_message(ScintillaObject *sci, unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return scintilla_send_message(sci, iMessage, wParam, lParam); } |
