diff options
author | Slávek Banko <[email protected]> | 2013-09-30 22:08:10 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-09-30 22:08:10 +0200 |
commit | 275a3ec40f09e70441a36183e714c6c099b0efa6 (patch) | |
tree | 11dafeccc4019523dbd1afd64fa0f8639591afc7 | |
parent | a0afa97978beb2430ceaf36a88bce8b0b9d4901b (diff) | |
download | pytqt-275a3ec40f09e70441a36183e714c6c099b0efa6.tar.gz pytqt-275a3ec40f09e70441a36183e714c6c099b0efa6.zip |
Revert pyqt3TQtSignal to pyqt3QtSignal
It allows to retain compatibility with the original SIP4
-rw-r--r-- | sip/qt/qobject.sip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sip/qt/qobject.sip b/sip/qt/qobject.sip index 8829ac1..f039534 100644 --- a/sip/qt/qobject.sip +++ b/sip/qt/qobject.sip @@ -2196,7 +2196,7 @@ int pyqt3EmitSignal(PyObject *self, const char *sig, PyObject *sigargs) // See if it is a TQt signal. if (*sig == '2') { - pyqt3TQtSignal *tab; + pyqt3QtSignal *tab; // Search the table. for (tab = ((pyqt3ClassTypeDef *)((sipWrapperType *)(self->ob_type))->type)->qt3_emit; tab->st_name != NULL; ++tab) |