more python refcount debugging stuff
[enigma2.git] / lib / nav / core.cpp
index a687eabe5ecf0a6fdb1865892f710fe5e48f7cc7..5dc45999cfbb00e0e5a1fe92b774d376cc593169 100644 (file)
@@ -104,7 +104,7 @@ PyObject *eNavigation::getRecordings(void)
        ePyObject result = PyList_New(m_recordings.size());
        int pos=0;
        for (std::map<ePtr<iRecordableService>, ePtr<eConnection> >::iterator it(m_recordings.begin()); it != m_recordings.end(); ++it)
-               PyList_SET_ITEM(result, pos++, New_iRecordableServicePtr(it->first)); 
+               PyList_SET_ITEM(result, pos++, NEW_iRecordableServicePtr(it->first)); 
        return result;
 }