summaryrefslogtreecommitdiffstats
path: root/siplib
diff options
context:
space:
mode:
Diffstat (limited to 'siplib')
-rw-r--r--siplib/sip.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/siplib/sip.h b/siplib/sip.h
index 633dae7..c23688b 100644
--- a/siplib/sip.h
+++ b/siplib/sip.h
@@ -1505,13 +1505,13 @@ typedef int (*pyqt3EmitFunc)(sipSimpleWrapper *, PyObject *);
/*
* Maps the name of a TQt signal to a wrapper function to emit it.
*/
-typedef struct _pyqt3TQtSignal {
+typedef struct _pyqt3QtSignal {
/* The signal name. */
const char *st_name;
/* The emitter function. */
pyqt3EmitFunc st_emitfunc;
-} pyqt3TQtSignal;
+} pyqt3QtSignal;
/*
@@ -1525,7 +1525,7 @@ typedef struct _pyqt3ClassTypeDef {
sipClassTypeDef super;
/* The emit table for TQt signals. */
- pyqt3TQtSignal *qt3_emit;
+ pyqt3QtSignal *qt3_emit;
} pyqt3ClassTypeDef;