summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
}