diff options
author | nyamatongwe <unknown> | 2013-10-03 11:04:06 +1030 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-10-03 11:04:06 +1030 |
commit | ee5c0b3cac528dc6901a6bb62a3d321e488dcf14 (patch) | |
tree | c162cee83b4b74d198375ff4d56c36a26a6884ad /qt/ScintillaEditPy/sepbuild.py | |
parent | 1ad3c0feaaf7c08baae8fe9ef5c885c0711a14ce (diff) | |
download | scintilla-mirror-ee5c0b3cac528dc6901a6bb62a3d321e488dcf14.tar.gz |
Match change 4801 for Python binding types.
From John Ehresman.
Diffstat (limited to 'qt/ScintillaEditPy/sepbuild.py')
-rw-r--r-- | qt/ScintillaEditPy/sepbuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/ScintillaEditPy/sepbuild.py b/qt/ScintillaEditPy/sepbuild.py index 43d9930fd..be1b238da 100644 --- a/qt/ScintillaEditPy/sepbuild.py +++ b/qt/ScintillaEditPy/sepbuild.py @@ -77,7 +77,7 @@ def methodSignature(name, v, options): argTypes = "" p1Type = WidgetGen.cppAlias(v["Param1Type"]) if p1Type == "int": - p1Type = "uptr_t" + p1Type = "sptr_t" if p1Type: argTypes = argTypes + p1Type p2Type = WidgetGen.cppAlias(v["Param2Type"]) |