aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlplatform.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlplatform.cpp')
-rw-r--r--src/qml/qml/qqmlplatform.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/qml/qqmlplatform.cpp b/src/qml/qml/qqmlplatform.cpp
index c1ad5c0886..dcd7ca2d46 100644
--- a/src/qml/qml/qqmlplatform.cpp
+++ b/src/qml/qml/qqmlplatform.cpp
@@ -74,10 +74,10 @@ QString QQmlPlatform::os()
return QStringLiteral("linux");
#elif defined(Q_OS_QNX)
return QStringLiteral("qnx");
-#elif defined(Q_OS_UNIX)
- return QStringLiteral("unix");
#elif defined(Q_OS_WASM)
return QStringLiteral("wasm");
+#elif defined(Q_OS_UNIX)
+ return QStringLiteral("unix");
#else
return QStringLiteral("unknown");
#endif