diff options
Diffstat (limited to 'siplib/qtlib.c')
-rw-r--r-- | siplib/qtlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/siplib/qtlib.c b/siplib/qtlib.c index 9bf065a..3e9b03f 100644 --- a/siplib/qtlib.c +++ b/siplib/qtlib.c @@ -143,7 +143,7 @@ PyObject *sip_api_invoke_slot(const sipSlot *slot, PyObject *sigargs) * longer exists. */ if (PyObject_TypeCheck(self, (PyTypeObject *)&sipSimpleWrapper_Type) && - sipGetAddress(self) == NULL) + sip_api_get_address(self) == NULL) { Py_XDECREF(sref); @@ -371,7 +371,7 @@ void *sipGetRx(sipSimpleWrapper *txSelf, const char *sigargs, PyObject *rxObj, * The slot was either a Python callable or PyTQt3 Python signal so there * should be a universal slot. */ - return sipTQtSupport->qt_find_slot(sipGetAddress(txSelf), sigargs, rxObj, slot, memberp); + return sipTQtSupport->qt_find_slot(sip_api_get_address(txSelf), sigargs, rxObj, slot, memberp); } |