summaryrefslogtreecommitdiffstats
path: root/sipgen/transform.c
diff options
context:
space:
mode:
Diffstat (limited to 'sipgen/transform.c')
-rw-r--r--sipgen/transform.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sipgen/transform.c b/sipgen/transform.c
index c6d204d..d88a7f0 100644
--- a/sipgen/transform.c
+++ b/sipgen/transform.c
@@ -1632,7 +1632,7 @@ static void getVisibleMembers(sipSpec *pt, classDef *cd)
if (!generatingCodeForModule(pt, cd->iff->module))
continue;
- if (isProtected(od) || (isSignal(od) && pluginPyTQt3(pt)))
+ if (isProtected(od) || (isSignal(od) && pluginPyTQt(pt)))
setIsUsedName(md->pyname);
/* Make we have any API name. */
@@ -2101,7 +2101,7 @@ static int supportedType(classDef *cd,overDef *od,argDef *ad,int outputs)
case rxdis_type:
case slotcon_type:
case slotdis_type:
- case qobject_type:
+ case tqobject_type:
case ellipsis_type:
/* These can only appear in argument lists without * or &. */
@@ -3406,7 +3406,7 @@ static void createSortedNumberedTypesTable(sipSpec *pt, moduleDef *mod)
/* If we find a class called TQObject, assume it's TQt. */
if (strcmp(ad->name->text, TQOBJECT_OBJECT_NAME_STRING) == 0)
- mod->qobjclass = i;
+ mod->tqobjclass = i;
break;