summaryrefslogtreecommitdiffstats
path: root/sip/qt/qmemarray.sip
diff options
context:
space:
mode:
Diffstat (limited to 'sip/qt/qmemarray.sip')
-rw-r--r--sip/qt/qmemarray.sip4
1 files changed, 2 insertions, 2 deletions
diff --git a/sip/qt/qmemarray.sip b/sip/qt/qmemarray.sip
index 5fc5d02..d7a4a7b 100644
--- a/sip/qt/qmemarray.sip
+++ b/sip/qt/qmemarray.sip
@@ -50,7 +50,7 @@ converted to and from Python lists of the type.
// Get it.
for (uint i = 0; i < sipCpp -> size(); ++i)
- if (PyList_SetItem(l,i,PyInt_FromLong((long)sipCpp -> at(i))) < 0)
+ if (PyList_SetItem(l,i,PyLong_FromLong((long)sipCpp -> at(i))) < 0)
{
Py_DECREF(l);
@@ -72,7 +72,7 @@ converted to and from Python lists of the type.
for (int i = 0; i < PyList_GET_SIZE(sipPy); ++i)
{
- (*qma)[i] = (int)PyInt_AsLong(PyList_GET_ITEM(sipPy,i));
+ (*qma)[i] = (int)PyLong_AsLong(PyList_GET_ITEM(sipPy,i));
if (PyErr_Occurred() != NULL)
{