aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2019-06-07 23:20:59 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2019-06-07 23:20:59 +0200
commit731bb66abcd50573a1dfd478ae0495421d0d7339 (patch)
treea82bee72783db8f9063d857205972e71b1df3994 /sources/shiboken2/generator/shiboken2/shibokengenerator.cpp
parent768541fb2e81a426daeffc2f81dcca42ecc43919 (diff)
parentb9a857b0fdcad47db958df635a5af934a8e90d62 (diff)
Merge "Merge remote-tracking branch 'origin/5.13' into dev"
Diffstat (limited to 'sources/shiboken2/generator/shiboken2/shibokengenerator.cpp')
-rw-r--r--sources/shiboken2/generator/shiboken2/shibokengenerator.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp b/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp
index 2b3b20c75..5d599fe95 100644
--- a/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp
+++ b/sources/shiboken2/generator/shiboken2/shibokengenerator.cpp
@@ -2681,8 +2681,11 @@ QString ShibokenGenerator::getTypeIndexVariableName(const TypeEntry* type)
QString ShibokenGenerator::getTypeIndexVariableName(const AbstractMetaType* type)
{
QString result = QLatin1String("SBK");
- if (type->typeEntry()->isContainer())
+ const auto *typeEntry = type->typeEntry();
+ if (typeEntry->isContainer()
+ || typeEntry->isSmartPointer()) { // PYSIDE-1024
result += QLatin1Char('_') + moduleName().toUpper();
+ }
result += processInstantiationsVariableName(type);
appendIndexSuffix(&result);
return result;