summaryrefslogtreecommitdiffstats
path: root/sipgen/export.c
diff options
context:
space:
mode:
Diffstat (limited to 'sipgen/export.c')
-rw-r--r--sipgen/export.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sipgen/export.c b/sipgen/export.c
index 641ea32..4c741c1 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, "SLOT(");
+ prcode(fp, "TQT_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 = "SIGNAL()";
+ type_name = "TQT_SIGNAL()";
break;
case slot_type:
- type_name = "SLOT()";
+ type_name = "TQT_SLOT()";
break;
case rxcon_type:
@@ -968,12 +968,12 @@ static const char *pyType(sipSpec *pt, argDef *ad, int sec, classDef **scope)
if (sec)
type_name = "callable";
else
- type_name = "QObject";
+ type_name = TQOBJECT_OBJECT_NAME_STRING;
break;
case qobject_type:
- type_name = "QObject";
+ type_name = TQOBJECT_OBJECT_NAME_STRING;
break;
case ustring_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 = "SLOT()";
+ type_name = "TQT_SLOT()";
break;
default: