diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-12 09:09:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2021-05-12 09:09:41 +0900 |
commit | 8e8bdb86cb665f65368d6380d4b37e41b18acee6 (patch) | |
tree | c4e5e79ce8f5e7b196027c6a76c188d3c8dd51a9 /sip | |
parent | 6d6b6319a8e4e37db4415dcd433ac30f4446a5a1 (diff) | |
download | pytqt-8e8bdb86cb665f65368d6380d4b37e41b18acee6.tar.gz pytqt-8e8bdb86cb665f65368d6380d4b37e41b18acee6.zip |
Additional fix similar to previous commit.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'sip')
-rw-r--r-- | sip/qt/qmemarray.sip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sip/qt/qmemarray.sip b/sip/qt/qmemarray.sip index e22e1d8..5fc5d02 100644 --- a/sip/qt/qmemarray.sip +++ b/sip/qt/qmemarray.sip @@ -117,7 +117,7 @@ template<TYPE> return NULL; } - PyList_SET_ITEM(l, i, tobj); + PyList_SetItem(l, i, tobj); } return l; |