Revert pyqt4TQtSignal to pyqt4QtSignal

pull/1/head
Slávek Banko 11 years ago
parent 9b74ae4899
commit e1f1a8aaaf

@ -9023,7 +9023,7 @@ static void generateTypeDefinition(sipSpec *pt, classDef *cd, FILE *fp)
"\n"
"\n"
"/* Define this type's PyTQt4 signals. */\n"
"static const pyqt4TQtSignal pyqt4_signals_%C[] = {\n"
"static const pyqt4QtSignal pyqt4_signals_%C[] = {\n"
, classFTQCName(cd));
}

@ -1537,7 +1537,7 @@ typedef struct _pyqt3ClassTypeDef {
/*
* The description of a TQt signal for PyTQt4.
*/
typedef struct _pyqt4TQtSignal {
typedef struct _pyqt4QtSignal {
/* The C++ name and signature of the signal. */
const char *signature;
@ -1549,7 +1549,7 @@ typedef struct _pyqt4TQtSignal {
* code that implements those methods.
*/
PyMethodDef *non_signals;
} pyqt4TQtSignal;
} pyqt4QtSignal;
/*
@ -1575,7 +1575,7 @@ typedef struct _pyqt4ClassTypeDef {
* The table of signals emitted by the type. These are grouped by signal
* name.
*/
const pyqt4TQtSignal *qt4_signals;
const pyqt4QtSignal *qt4_signals;
} pyqt4ClassTypeDef;

Loading…
Cancel
Save