From 75a7dc7a574e0c949214feecc711e385f38060e9 Mon Sep 17 00:00:00 2001 From: Richard Moe Gustavsen Date: Thu, 21 Feb 2013 14:59:30 +0100 Subject: iOS: Remove debug output noise MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This debug information is not needed anymore, and only causes noise when trying to debug other stuff. Change-Id: I076826e251b84a3883e63aa7669f6e1bb55a0d1f Reviewed-by: Tor Arne Vestbø --- src/plugins/platforms/ios/qiosintegration.mm | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/plugins/platforms/ios/qiosintegration.mm b/src/plugins/platforms/ios/qiosintegration.mm index adb33da344..c7541c3e38 100644 --- a/src/plugins/platforms/ios/qiosintegration.mm +++ b/src/plugins/platforms/ios/qiosintegration.mm @@ -98,14 +98,12 @@ bool QIOSIntegration::hasCapability(Capability cap) const QPlatformWindow *QIOSIntegration::createPlatformWindow(QWindow *window) const { - qDebug() << __FUNCTION__ << "Creating platform window"; return new QIOSWindow(window); } // Used when the QWindow's surface type is set by the client to QSurface::RasterSurface QPlatformBackingStore *QIOSIntegration::createPlatformBackingStore(QWindow *window) const { - qDebug() << __FUNCTION__ << "Creating platform backingstore"; return new QIOSBackingStore(window); } @@ -113,7 +111,6 @@ QPlatformBackingStore *QIOSIntegration::createPlatformBackingStore(QWindow *wind QPlatformOpenGLContext *QIOSIntegration::createPlatformOpenGLContext(QOpenGLContext *context) const { Q_UNUSED(context); - qDebug() << __FUNCTION__ << "Creating platform opengl context"; return new QIOSContext(context); } -- cgit v1.2.3