We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ecf811 + 8e8b126 commit d6c6fc7Copy full SHA for d6c6fc7
1 file changed
src/util.h
@@ -1098,9 +1098,11 @@ class COSUtil
1098
{
1099
#ifdef _WIN32
1100
return OT_WINDOWS;
1101
-#elif defined( __APPLE__ ) || defined( __MACOSX )
+#elif defined( Q_OS_MACOS )
1102
return OT_MAC_OS;
1103
-#elif defined( ANDROID )
+#elif defined( Q_OS_IOS )
1104
+ return OT_I_OS;
1105
+#elif defined( Q_OS_ANDROID ) || defined( ANDROID )
1106
return OT_ANDROID;
1107
#else
1108
return OT_LINUX;
0 commit comments