summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@digia.com>2012-12-07 15:15:21 +0100
committerTor Arne Vestbø <tor.arne.vestbo@digia.com>2013-02-27 23:55:49 +0100
commit2d4e96352a0f52351e0fa69273b064a66d460c04 (patch)
tree2c0e332f0c045fa1188ed6acaf28304a711dfad9 /src/plugins
parent3a59fc4c97a3658b9712fa214778008bbf914cf9 (diff)
iOS: one 'transform' warning per window is sufficient
The layoutSubviews function will be called when the geometry changes, and we will catch the transform issue there for both UC1 and UC2 Change-Id: I29578bbc5b3091c86fbe69c7095ff280a64be458 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/platforms/ios/qioswindow.mm5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/platforms/ios/qioswindow.mm b/src/plugins/platforms/ios/qioswindow.mm
index c91c0b2f35..7f03e0d46a 100644
--- a/src/plugins/platforms/ios/qioswindow.mm
+++ b/src/plugins/platforms/ios/qioswindow.mm
@@ -211,11 +211,6 @@ QIOSWindow::~QIOSWindow()
void QIOSWindow::setGeometry(const QRect &rect)
{
- if (!CGAffineTransformIsIdentity(m_view.transform)) {
- qWarning() << "Setting the geometry of a QWindow with a transform set on the UIView is not supported";
- return;
- }
-
// If the window is in fullscreen, just bookkeep the requested
// geometry in case the window goes into Qt::WindowNoState later:
QPlatformWindow::setGeometry(rect);