From f9265cc44759eae21bc59a6485400b153f5b846a Mon Sep 17 00:00:00 2001 From: Martijn Laan <1092369+martijnlaan@users.noreply.github.com> Date: Fri, 14 Jun 2024 07:45:14 +0200 Subject: [PATCH] Clarify comment. --- Projects/Src/CompScintEdit.pas | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Projects/Src/CompScintEdit.pas b/Projects/Src/CompScintEdit.pas index 90900759e..686b51470 100644 --- a/Projects/Src/CompScintEdit.pas +++ b/Projects/Src/CompScintEdit.pas @@ -161,8 +161,9 @@ procedure TCompScintEdit.CreateWnd; and SCI_FORMATRANGEFULL from their predecessors as they will be deprecated." So our use of SCI_GETTEXTRANGE and SCI_FORMATRANGE needs to be updated but that also means we should do many more changes to - replace all the Integer positions with NativeInt positions. Does not - actually change anything until there's a 64-bit build... + replace all the Integer positions with a 'TScintPosition = type + NativeInt'. Does not actually change anything until there's a + 64-bit build... -5.3.0: "Stop including STYLE_CALLTIP when calculating line height. Allows a large font to be used for calltips without affecting text display." Allows cleanup of our STYLE_AUTOCOMPLETION patch.