From 9fd407fc6a29c94b4568dd042a05c208255179e0 Mon Sep 17 00:00:00 2001 From: Mike Krus Date: Thu, 19 May 2016 20:42:51 +0100 Subject: Fix tvOS build QIOSTextInputOverlay was excluded from build not member variable was not, leading to link errors Change-Id: Ia9c09c503decb596907a17dc8fe8fd0f8d5f657f Reviewed-by: Jake Petroules --- src/plugins/platforms/ios/qiosintegration.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/plugins/platforms/ios/qiosintegration.h b/src/plugins/platforms/ios/qiosintegration.h index 8009a37edb..36c3bbf6f1 100644 --- a/src/plugins/platforms/ios/qiosintegration.h +++ b/src/plugins/platforms/ios/qiosintegration.h @@ -46,7 +46,9 @@ #include "qiosapplicationstate.h" #include "qiosfileenginefactory.h" +#ifndef Q_OS_TVOS #include "qiostextinputoverlay.h" +#endif QT_BEGIN_NAMESPACE @@ -111,7 +113,9 @@ private: QIOSServices *m_platformServices; mutable QPlatformAccessibility *m_accessibility; QIOSFileEngineFactory m_fileEngineFactory; +#ifndef Q_OS_TVOS QIOSTextInputOverlay m_textInputOverlay; +#endif bool m_debugWindowManagement; }; @@ -119,4 +123,3 @@ private: QT_END_NAMESPACE #endif - -- cgit v1.2.3