aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk/ScintillaGTK.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-02-18 02:28:01 +0000
committernyamatongwe <devnull@localhost>2001-02-18 02:28:01 +0000
commitb9abce71624013ee6a2e892fdf6169b5ac733bd1 (patch)
tree6bc2157d676049d1a23bb8cb7bae41966f55becf /gtk/ScintillaGTK.cxx
parent9a129ff9b241a82e52d515836d4c149feab1a133 (diff)
downloadscintilla-mirror-b9abce71624013ee6a2e892fdf6169b5ac733bd1.tar.gz
Changed iMessage parameter of scintilla_send_message from int to unsigned
int to be compatible with other message functions.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r--gtk/ScintillaGTK.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx
index 57323f5bf..75c19d733 100644
--- a/gtk/ScintillaGTK.cxx
+++ b/gtk/ScintillaGTK.cxx
@@ -1300,7 +1300,7 @@ sptr_t ScintillaGTK::DirectFunction(
return sciThis->WndProc(iMessage, wParam, lParam);
}
-sptr_t scintilla_send_message(ScintillaObject *sci, int iMessage, uptr_t wParam, sptr_t lParam) {
+sptr_t scintilla_send_message(ScintillaObject *sci, unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
ScintillaGTK *psci = reinterpret_cast<ScintillaGTK *>(sci->pscin);
return psci->WndProc(iMessage, wParam, lParam);
}