aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/CheckMentioned.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2022-08-01 16:04:04 +1000
committerNeil <nyamatongwe@gmail.com>2022-08-01 16:04:04 +1000
commitf785b350d7e0e632a1bc81c96fc0bd76cd013cbc (patch)
treeb45daebfd35813318a52611a7445ad4649b7dde0 /scripts/CheckMentioned.py
parentee4e08d81f633437034b05b56a82dc20f474991a (diff)
downloadscintilla-mirror-f785b350d7e0e632a1bc81c96fc0bd76cd013cbc.tar.gz
Update CheckMentioned.py script to handle ...Full structs.
Fix documentation to use correct ID attribute.
Diffstat (limited to 'scripts/CheckMentioned.py')
-rw-r--r--scripts/CheckMentioned.py6
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 + " "