diff options
author | Neil <nyamatongwe@gmail.com> | 2021-04-15 09:04:55 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-04-15 09:04:55 +1000 |
commit | ffb45089aaac1ded12dcad7d237c8082fed1dc3a (patch) | |
tree | f1127283a5251db73a4bfe0e81345a7fea174d38 /gtk/ScintillaGTK.h | |
parent | c6d90475a1dc4fabd2be06768012fd48a32ecf46 (diff) | |
download | scintilla-mirror-ffb45089aaac1ded12dcad7d237c8082fed1dc3a.tar.gz |
Widen some position and length values to match core APIs.
Diffstat (limited to 'gtk/ScintillaGTK.h')
-rwxr-xr-x | gtk/ScintillaGTK.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/ScintillaGTK.h b/gtk/ScintillaGTK.h index 51d51d2ab..58f395432 100755 --- a/gtk/ScintillaGTK.h +++ b/gtk/ScintillaGTK.h @@ -225,8 +225,8 @@ private: void PreeditChangedInlineThis(); void PreeditChangedWindowedThis(); static void PreeditChanged(GtkIMContext *context, ScintillaGTK *sciThis); - void MoveImeCarets(int pos); - void DrawImeIndicator(int indicator, int len); + void MoveImeCarets(Sci::Position pos); + void DrawImeIndicator(int indicator, Sci::Position len); void SetCandidateWindowPos(); static void StyleSetText(GtkWidget *widget, GtkStyle *previous, void *); |