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"
"\n" "\n"
"/* Define this type's PyTQt4 signals. */\n" "/* Define this type's PyTQt4 signals. */\n"
"static const pyqt4TQtSignal pyqt4_signals_%C[] = {\n" "static const pyqt4QtSignal pyqt4_signals_%C[] = {\n"
, classFTQCName(cd)); , classFTQCName(cd));
} }

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

Loading…
Cancel
Save