Skip to content

Commit

Permalink
broken QML version initialization fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
uwerat committed Sep 11, 2024
1 parent 68e9303 commit 8d342c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qmlexport/QskQmlClassInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ ClassInfo::ClassInfo( const char* qmlName, const QMetaObject* metaObject )
m_info.createValueType = nullptr;

m_info.uri = QskQmlModule::name;
m_info.version = QTypeRevision::fromVersion( QskQmlModule::name[0], QskQmlModule::name[1] );
m_info.version = QTypeRevision::fromVersion(
QskQmlModule::version[0], QskQmlModule::version[1] );

m_info.elementName = qmlName;
m_info.metaObject = metaObject;
Expand Down

0 comments on commit 8d342c2

Please sign in to comment.