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 | |
parent | ee4e08d81f633437034b05b56a82dc20f474991a (diff) | |
download | scintilla-mirror-f785b350d7e0e632a1bc81c96fc0bd76cd013cbc.tar.gz |
Update CheckMentioned.py script to handle ...Full structs.
Fix documentation to use correct ID attribute.
-rw-r--r-- | doc/ScintillaDoc.html | 2 | ||||
-rw-r--r-- | scripts/CheckMentioned.py | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index 38a0434d9..bcbc88152 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -1053,7 +1053,7 @@ struct Sci_TextRangeFull { </code> <p><b id="SCI_FINDTEXT">SCI_FINDTEXT(int searchFlags, <a class="jump" href="#Sci_TextToFind">Sci_TextToFind</a> *ft) → position</b><br /> - <b id="SCI_FINDTEXT">SCI_FINDTEXTFULL(int searchFlags, <a class="jump" href="#Sci_TextToFindFull">Sci_TextToFindFull</a> *ft) → position</b><br /> + <b id="SCI_FINDTEXTFULL">SCI_FINDTEXTFULL(int searchFlags, <a class="jump" href="#Sci_TextToFindFull">Sci_TextToFindFull</a> *ft) → position</b><br /> These messages search for text in the document. They do not use or move the current selection. The <a class="jump" href="#searchFlags"><code class="parameter">searchFlags</code></a> argument controls the search type, which includes regular expression searches.</p> 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 + " " |