Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.9.0
-
None
Description
The Document Viewer example uses a method that is not documented in RuntimeLoader QML Type:
component.loadFromModule(u"Q3DViewer", "QueryMimeTypes"); std::unique_ptr<QObject> loader(component.create()); if (!loader) return {}; const auto &mt = qvariant_cast<QList<QMimeType>>(loader->property("supportedMimeTypes"));
supportedMimeTypes() is indeed implemented since Qt 6.7 (see https://codereview.qt-project.org/c/qt/qtquick3d/+/512256).