summaryrefslogtreecommitdiffstats
path: root/sipgen
diff options
context:
space:
mode:
Diffstat (limited to 'sipgen')
-rw-r--r--sipgen/export.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sipgen/export.c b/sipgen/export.c
index a11de0a..3e7efed 100644
--- a/sipgen/export.c
+++ b/sipgen/export.c
@@ -762,7 +762,7 @@ static void xmlType(sipSpec *pt, argDef *ad, int sec, FILE *fp)
{
int a;
- prcode(fp, "TQT_SLOT(");
+ prcode(fp, "TQ_SLOT(");
for (a = 0; a < ad->u.sa->nrArgs; ++a)
{
@@ -956,11 +956,11 @@ static const char *pyType(sipSpec *pt, argDef *ad, int sec, classDef **scope)
break;
case signal_type:
- type_name = "TQT_SIGNAL()";
+ type_name = "TQ_SIGNAL()";
break;
case slot_type:
- type_name = "TQT_SLOT()";
+ type_name = "TQ_SLOT()";
break;
case rxcon_type:
@@ -1044,7 +1044,7 @@ static const char *pyType(sipSpec *pt, argDef *ad, int sec, classDef **scope)
case slotcon_type:
case anyslot_type:
- type_name = "TQT_SLOT()";
+ type_name = "TQ_SLOT()";
break;
default: