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 88432b7..9bf065a 100644 --- a/siplib/qtlib.c +++ b/siplib/qtlib.c @@ -95,9 +95,9 @@ PyObject *sip_api_invoke_slot(const sipSlot *slot, PyObject *sigargs) /* Fan out TQt signals. (Only PyTQt3 will do this.) */ if (slot->name != NULL && slot->name[0] != '\0') { - assert(sipTQtSupport->qt_emit_signal); + assert(sipTQtSupport->tqt_emit_signal); - if (sipTQtSupport->qt_emit_signal(slot->pyobj, slot->name, sigargs) < 0) + if (sipTQtSupport->tqt_emit_signal(slot->pyobj, slot->name, sigargs) < 0) return NULL; Py_INCREF(Py_None); |