Fix tvOS build

QIOSTextInputOverlay was excluded from build not member variable was
not, leading to link errors

Change-Id: Ia9c09c503decb596907a17dc8fe8fd0f8d5f657f
Reviewed-by: Jake Petroules <jake.petroules@qt.io>
This commit is contained in:
Mike Krus 2016-05-19 20:42:51 +01:00
parent 34fd680802
commit 9fd407fc6a

View File

@ -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