summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qplatformnativeinterface_qpa.cpp
diff options
context:
space:
mode:
authorOlli Werwolff <qt-info@nokia.com>2011-07-12 13:02:54 +0200
committerOliver Wolff <oliver.wolff@nokia.com>2011-07-12 14:15:35 +0200
commit992ef929dff21e079f7d8a207c07dbfd0c3c8f78 (patch)
tree32c286aff3e501e704e02dc114228da5d032d5df /src/gui/kernel/qplatformnativeinterface_qpa.cpp
parent54ec6d177e0e8fb04cd01e70461484a80ca1f7a4 (diff)
Use PlatformNativeInterface to obtain backingStore's dc
Change-Id: I6ec2fc0b8e7696fdfe4468920228df2d21c933fd Reviewed-on: http://codereview.qt.nokia.com/1501 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
Diffstat (limited to 'src/gui/kernel/qplatformnativeinterface_qpa.cpp')
-rw-r--r--src/gui/kernel/qplatformnativeinterface_qpa.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gui/kernel/qplatformnativeinterface_qpa.cpp b/src/gui/kernel/qplatformnativeinterface_qpa.cpp
index 82d6a97a47..18bef8a595 100644
--- a/src/gui/kernel/qplatformnativeinterface_qpa.cpp
+++ b/src/gui/kernel/qplatformnativeinterface_qpa.cpp
@@ -57,4 +57,11 @@ void *QPlatformNativeInterface::nativeResourceForContext(const QByteArray &resou
return 0;
}
+void * QPlatformNativeInterface::nativeResourceForBackingStore(const QByteArray &resource, QBackingStore *backingStore)
+{
+ Q_UNUSED(resource);
+ Q_UNUSED(backingStore);
+ return 0;
+}
+
QT_END_NAMESPACE