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 | 1adbac1a481a84b1e26f723827574bf51f22b12e (patch) | |
tree | b1242657ce531f6beee3425717a4960f3e8a98f4 | |
parent | d8fca6294ae59b61105ee779c0502599aa4ade55 (diff) | |
download | scintilla-mirror-1adbac1a481a84b1e26f723827574bf51f22b12e.tar.gz |
Feature [feature-requests:#1297] 3: Add pointer type to 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: |