iOS: Use default createPlatformPixmap implementation

No need to implement this one, the standard implementation
creates a raster pixmap.

Change-Id: I9bb25188bd95159d76e760b2be6870e0bede7b56
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
bb10
Morten Johan Sorvig 2012-11-07 22:11:35 +01:00 committed by Tor Arne Vestbø
parent e936561a16
commit 8d7238f57e
2 changed files with 0 additions and 9 deletions

View File

@ -53,7 +53,6 @@ public:
QIOSIntegration();
~QIOSIntegration();
QPlatformPixmap *createPlatformPixmap(QPlatformPixmap::PixelType type) const;
QPlatformWindow *createPlatformWindow(QWindow *window) const;
QPlatformBackingStore *createPlatformBackingStore(QWindow *window) const;

View File

@ -63,14 +63,6 @@ QIOSIntegration::~QIOSIntegration()
{
}
QPlatformPixmap *QIOSIntegration::createPlatformPixmap(QPlatformPixmap::PixelType type) const
{
Q_UNUSED(type);
qDebug() << __FUNCTION__ << "not yet implemented";
return 0;
}
QPlatformWindow *QIOSIntegration::createPlatformWindow(QWindow *window) const
{
qDebug() << __FUNCTION__ << "Creating platform window";