Mitchell
unread,May 3, 2025, 10:35:50 PMMay 3Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to scintilla-interest
Hi Neil,
I noticed the "CallTipPosStart=2203(,)” message in Scintilla.iface is marked as a “fun” when I think it should be a “get”.
```
# Retrieve the position where the caret was before displaying the call tip.
-fun position CallTipPosStart=2203(,)
+get position CallTipPosStart=2203(,)
# Set the start position in order to change when backspacing removes the calltip.
set void CallTipSetPosStart=2214(position posStart,)
```
I have a script that generates an interface for my application from Scintilla.iface and I end up having both a function (getter) and property setter when they both ought to be combined into a single read-write property.
Cheers,
Mitchell