diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-08 11:54:36 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-10 10:01:39 +0900 |
| commit | c668d2b1b34ee856e70874159c42892a4c9c8af4 (patch) | |
| tree | ab4f1231cb46ad964d2b20c2a865d46d87f223bd /sipgen/export.c | |
| parent | 62beed758e74fd9d475ddfebfd0ab3e7c0e94ec1 (diff) | |
| download | sip4-tqt-c668d2b1.tar.gz sip4-tqt-c668d2b1.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit e44eaa6ec01b8a2a0844ecc960f843eca1c4f645)
Diffstat (limited to 'sipgen/export.c')
| -rw-r--r-- | sipgen/export.c | 8 |
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: |
