diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2024-05-21 08:20:54 +0200 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2024-05-21 09:28:59 +0200 |
| commit | 84939474074974b080474a224e5e2900cad25d8a (patch) | |
| tree | 96f252227da7ec96e12d5d6dea461ef34fccbdb7 /sources/pyside6/libpyside/pyside.cpp | |
| parent | 680b97b17e27299febd3c2e8eb32d8843b7ec329 (diff) | |
libpyside: Remove duplicated LoadLazyClassesWithName() call
LoadLazyClassesWithName() is already called from getConverter().
Task-number: PYSIDE-2404
Task-number: PYSIDE-2749
Pick-to: 6.7
Change-Id: Ib3dc98e92eadbdebe247b1ae18d4e737c98b1501
Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside6/libpyside/pyside.cpp')
| -rw-r--r-- | sources/pyside6/libpyside/pyside.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sources/pyside6/libpyside/pyside.cpp b/sources/pyside6/libpyside/pyside.cpp index cff74c260..1a4050bf8 100644 --- a/sources/pyside6/libpyside/pyside.cpp +++ b/sources/pyside6/libpyside/pyside.cpp @@ -688,13 +688,6 @@ static const char *typeName(const QObject *cppSelf) typeName = name; break; } - // PYSIDE-2404: Did not find the name. Load the lazy classes - // which have this name and try again. - Shiboken::Module::loadLazyClassesWithName(name); - if (Shiboken::Conversions::getConverter(name)) { - typeName = name; - break; - } } } return typeName; |
