diff options
author | nyamatongwe <devnull@localhost> | 2013-10-03 11:04:06 +1030 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2013-10-03 11:04:06 +1030 |
commit | c52efd422132638f47669a3d810fc2cfd26358e3 (patch) | |
tree | a69631a7d894c8e2146f103c6fd166709ded7522 /qt/ScintillaEditPy/sepbuild.py | |
parent | 6bc62fb3d4915e56cdaec76f8314db42017eea28 (diff) | |
download | scintilla-mirror-c52efd422132638f47669a3d810fc2cfd26358e3.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"]) |