diff options
author | Neil <nyamatongwe@gmail.com> | 2019-06-18 11:57:47 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2019-06-18 11:57:47 +1000 |
commit | 81de22e926e65ff21cb067f3fc5182a7651ad28b (patch) | |
tree | a6b74e0a0d63ceadb47c9cfb1237acd2f1e2ed91 /test/ScintillaCallable.py | |
parent | 040faa17c20562a11d445ee3e6d1a27dd168ec98 (diff) | |
download | scintilla-mirror-81de22e926e65ff21cb067f3fc5182a7651ad28b.tar.gz |
Backport: Feature [feature-requests:#1297] 3: Add pointer type to ScintillaCallable.py.
Backport of changeset 7584:46fe98d4a840.
Diffstat (limited to 'test/ScintillaCallable.py')
-rw-r--r-- | test/ScintillaCallable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ScintillaCallable.py b/test/ScintillaCallable.py index c812738a5..05cc5f671 100644 --- a/test/ScintillaCallable.py +++ b/test/ScintillaCallable.py @@ -83,7 +83,7 @@ class ScintillaCallable: not name.startswith("Get") and \ not feature["Param1Type"] and \ not feature["Param2Type"] and \ - feature["ReturnType"] in ["bool", "int", "position", "line"]: + feature["ReturnType"] in ["bool", "int", "position", "line", "pointer"]: #~ print("property", feature) return self._scifn(self._sciptr, value, None, None) elif name.startswith("SCN_") and name in self.k: |