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>
bb10
Richard Moe Gustavsen 2012-12-07 15:15:21 +01:00 committed by Tor Arne Vestbø
parent 3a59fc4c97
commit 2d4e96352a
1 changed files with 0 additions and 5 deletions

View File

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