summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/android/qandroidplatformbackingstore.h
diff options
context:
space:
mode:
authorBogDan Vatra <bogdan@kde.org>2014-06-04 10:51:31 +0300
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-06-05 19:10:58 +0200
commitf4ecc48112c3084c8f031e2c036acf329ed5d780 (patch)
tree621d9eb155b665e024151bb4810fdc6ff2b6753d /src/plugins/platforms/android/qandroidplatformbackingstore.h
parent74d46a669badc5bf32187686102ca4e644a3c0af (diff)
Android: Rename image method to toImage.
toImage is a virtual method declared in QPlatformBackingStore and is useful when you need to access the image buffer from outside the QPA plugin. (e.g. you can use QPlatformBackingStore::toImage().save("bs.png") to save it). Change-Id: I7cc70ed295070707ed0ef3ce208129f174f68cfb Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'src/plugins/platforms/android/qandroidplatformbackingstore.h')
-rw-r--r--src/plugins/platforms/android/qandroidplatformbackingstore.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platforms/android/qandroidplatformbackingstore.h b/src/plugins/platforms/android/qandroidplatformbackingstore.h
index 4c24e129c3..c51ebe879d 100644
--- a/src/plugins/platforms/android/qandroidplatformbackingstore.h
+++ b/src/plugins/platforms/android/qandroidplatformbackingstore.h
@@ -55,7 +55,7 @@ public:
virtual QPaintDevice *paintDevice();
virtual void flush(QWindow *window, const QRegion &region, const QPoint &offset);
virtual void resize(const QSize &size, const QRegion &staticContents);
- const QImage image() { return m_image; }
+ QImage toImage() const { return m_image; }
void setBackingStore(QWindow *window);
protected:
QImage m_image;