summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard Moe Gustavsen <richard.gustavsen@digia.com>2013-02-21 14:59:30 +0100
committerTor Arne Vestbø <tor.arne.vestbo@digia.com>2013-02-27 23:56:11 +0100
commit75a7dc7a574e0c949214feecc711e385f38060e9 (patch)
tree4f5b7433c4a03831c77b103d2fa75e19ca245eaf /src
parent76e4b6d2f24f7f88250db34fb03838a30fc43eec (diff)
iOS: Remove debug output noise
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ø <tor.arne.vestbo@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/platforms/ios/qiosintegration.mm3
1 files changed, 0 insertions, 3 deletions
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);
}