summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/shared/nativewindow.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/shared/nativewindow.h b/tests/shared/nativewindow.h
index 932d2d419a..163ca31634 100644
--- a/tests/shared/nativewindow.h
+++ b/tests/shared/nativewindow.h
@@ -28,7 +28,7 @@ class NativeWindow
public:
#if defined(Q_OS_MACOS)
using Handle = NSView*;
-#elif defined(Q_OS_IOS)
+#elif defined(QT_PLATFORM_UIKIT)
using Handle = UIView*;
#elif defined(Q_OS_WIN)
using Handle = HWND;
@@ -53,7 +53,7 @@ private:
Handle m_handle = {};
};
-#if QT_CONFIG(metal)
+#if defined(Q_OS_MACOS) || defined(QT_PLATFORM_UIKIT)
@interface View : VIEW_BASE
@end