diff options
author | Volker Hilsheimer <volker.hilsheimer@nokia.com> | 2009-07-19 20:42:08 (GMT) |
---|---|---|
committer | Volker Hilsheimer <volker.hilsheimer@nokia.com> | 2009-07-19 20:42:08 (GMT) |
commit | 7a1891b2f308377e67204bbc812716cbc148af4a (patch) | |
tree | 02ab4fa56d973ab02e338a75671f60741b52d2b2 /src/gui/image | |
parent | 50624a969d130ec55a6fd8e908b5b5e4e17636fb (diff) | |
download | Qt-7a1891b2f308377e67204bbc812716cbc148af4a.zip Qt-7a1891b2f308377e67204bbc812716cbc148af4a.tar.gz Qt-7a1891b2f308377e67204bbc812716cbc148af4a.tar.bz2 |
Doc: add \since 4.6 for new APIs
Diffstat (limited to 'src/gui/image')
-rw-r--r-- | src/gui/image/qpixmap.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/image/qpixmap.cpp b/src/gui/image/qpixmap.cpp index 61be832..15bbccb 100644 --- a/src/gui/image/qpixmap.cpp +++ b/src/gui/image/qpixmap.cpp @@ -380,6 +380,7 @@ QPixmap QPixmap::copy(const QRect &rect) const /*! \fn QPixmap::scroll(int dx, int dy, int x, int y, int width, int height, QRegion *exposed) + \since 4.6 This convenience function is equivalent to calling QPixmap::scroll(\a dx, \a dy, QRect(\a x, \a y, \a width, \a height), \a exposed). @@ -388,6 +389,8 @@ QPixmap QPixmap::copy(const QRect &rect) const */ /*! + \since 4.6 + Scrolls the area \a rect of this pixmap by (\a dx, \a dy). The exposed region is left unchanged. You can optionally pass a pointer to an empty QRegion to get the region that is \a exposed by the scroll operation. |