diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-26 13:10:35 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-26 13:10:35 +0000 |
| commit | e5f1c45c07b1ff43c0113a51128f60bd3e348aa4 (patch) | |
| tree | 8b00c1d92a9c6cd835f1ae3dfe9e75bc8e01e91c /lib/gui/epositiongauge.cpp | |
| parent | 6dcb75c26bbfec04b381bb99d75404f9fe50635d (diff) | |
| download | enigma2-e5f1c45c07b1ff43c0113a51128f60bd3e348aa4.tar.gz enigma2-e5f1c45c07b1ff43c0113a51128f60bd3e348aa4.zip | |
more python refcount debugging stuff
Diffstat (limited to 'lib/gui/epositiongauge.cpp')
| -rw-r--r-- | lib/gui/epositiongauge.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gui/epositiongauge.cpp b/lib/gui/epositiongauge.cpp index fbb24571..a7608b7a 100644 --- a/lib/gui/epositiongauge.cpp +++ b/lib/gui/epositiongauge.cpp @@ -70,14 +70,14 @@ void ePositionGauge::setInOutList(ePyObject list) for (i=0; i<size; ++i) { - ePyObject tuple = PyList_GetItem(list, i); + ePyObject tuple = PyList_GET_ITEM(list, i); if (!PyTuple_Check(tuple)) continue; if (PyTuple_Size(tuple) != 2) continue; - ePyObject ppts = PyTuple_GetItem(tuple, 0), ptype = PyTuple_GetItem(tuple, 1); + ePyObject ppts = PyTuple_GET_ITEM(tuple, 0), ptype = PyTuple_GET_ITEM(tuple, 1); if (!(PyLong_Check(ppts) && PyInt_Check(ptype))) continue; |
