aboutsummaryrefslogtreecommitdiffstats
path: root/generators/boostpython/boostpythongenerator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'generators/boostpython/boostpythongenerator.cpp')
-rw-r--r--generators/boostpython/boostpythongenerator.cpp14
1 files changed, 11 insertions, 3 deletions
diff --git a/generators/boostpython/boostpythongenerator.cpp b/generators/boostpython/boostpythongenerator.cpp
index 9c64a510b..d266d395a 100644
--- a/generators/boostpython/boostpythongenerator.cpp
+++ b/generators/boostpython/boostpythongenerator.cpp
@@ -51,7 +51,7 @@ QString BoostPythonGenerator::argumentString(const AbstractMetaFunction *cppFunc
QString modifiedType = cppFunction->typeReplaced(cppArgument->argumentIndex() + 1);
QString arg;
- if (modifiedType.isEmpty())
+ if ((options & OriginalTypeDescription) || modifiedType.isEmpty())
arg = translateType(cppArgument->type(), cppFunction->implementingClass(), options);
else
arg = modifiedType.replace('$', '.');
@@ -196,13 +196,21 @@ void BoostPythonGenerator::writeArgumentNames(QTextStream &s,
if (argCount > 0)
s << ", ";
+ QString argName = arguments.at(j)->argumentName();
+ if (((options & Generator::VirtualCall) == 0) &&
+ (!func->conversionRule(TypeSystem::NativeCode, arguments.at(j)->argumentIndex() + 1).isEmpty() ||
+ !func->conversionRule(TypeSystem::TargetLangCode, arguments.at(j)->argumentIndex() + 1).isEmpty())
+ )
+ argName += "_out";
+
if ((options & Generator::BoxedPrimitive) &&
!arguments.at(j)->type()->isReference() &&
(arguments.at(j)->type()->isQObject() ||
arguments.at(j)->type()->isObject())) {
- s << "PySide::ptr( " << arguments.at(j)->argumentName() << ")";
+
+ s << "PySide::ptr( " << argName << ")";
} else {
- s << arguments.at(j)->argumentName();
+ s << argName;
}
argCount++;
}