Add missing semicolon

Pick-to: 6.2 6.5 6.6
Change-Id: Ic88c9a984acc326535eecf71896417080f4af17a
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
Joni Poikelin 2023-06-05 10:01:05 +03:00
parent 761b455d47
commit fd89f67710
1 changed files with 1 additions and 1 deletions

View File

@ -183,7 +183,7 @@ void QmlTypesCreator::writeType(const QJsonObject &property, const QString &key)
if (type == QLatin1String("qreal")) {
#ifdef QT_COORD_TYPE_STRING
type = QLatin1String(QT_COORD_TYPE_STRING)
type = QLatin1String(QT_COORD_TYPE_STRING);
#else
type = QLatin1String("double");
#endif