diff options
author | Neil <nyamatongwe@gmail.com> | 2022-08-01 16:04:04 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-08-01 16:04:04 +1000 |
commit | f785b350d7e0e632a1bc81c96fc0bd76cd013cbc (patch) | |
tree | b45daebfd35813318a52611a7445ad4649b7dde0 /scripts | |
parent | ee4e08d81f633437034b05b56a82dc20f474991a (diff) | |
download | scintilla-mirror-f785b350d7e0e632a1bc81c96fc0bd76cd013cbc.tar.gz |
Update CheckMentioned.py script to handle ...Full structs.
Fix documentation to use correct ID attribute.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/CheckMentioned.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/CheckMentioned.py b/scripts/CheckMentioned.py index 157acb31e..3e87be79c 100644 --- a/scripts/CheckMentioned.py +++ b/scripts/CheckMentioned.py @@ -61,6 +61,12 @@ def convertIFaceTypeToC(t): return "Sci_TextToFind *" elif t == "formatrange": return "Sci_RangeToFormat *" + elif t == "textrangefull": + return "Sci_TextRangeFull *" + elif t == "findtextfull": + return "Sci_TextToFindFull *" + elif t == "formatrangefull": + return "Sci_RangeToFormatFull *" elif Face.IsEnumeration(t): return "int " return t + " " |