summaryrefslogtreecommitdiffstats
path: root/src/gui/painting/qbackingstore.cpp
diff options
context:
space:
mode:
authorCasper van Donderen <casper.vandonderen@nokia.com>2011-10-17 14:18:42 +0200
committerQt by Nokia <qt-info@nokia.com>2011-10-18 10:26:39 +0200
commit0e341948ae6ab993f9d56f81809e71b8a9cc753d (patch)
treef9cb0a0d1bbc18c650c975e88eb2661a83acb6a6 /src/gui/painting/qbackingstore.cpp
parent41b01096ccae8761bb5a0a761780ad48ce7e34ba (diff)
Remove stale documentation.
Change-Id: I85139e0334b648bee0d18129cef9387dcc6c3222 Reviewed-by: Jerome Pasion <jerome.pasion@nokia.com>
Diffstat (limited to 'src/gui/painting/qbackingstore.cpp')
-rw-r--r--src/gui/painting/qbackingstore.cpp34
1 files changed, 12 insertions, 22 deletions
diff --git a/src/gui/painting/qbackingstore.cpp b/src/gui/painting/qbackingstore.cpp
index f69a2e4ff6..fa29589508 100644
--- a/src/gui/painting/qbackingstore.cpp
+++ b/src/gui/painting/qbackingstore.cpp
@@ -71,29 +71,7 @@ public:
\brief The QBackingStore class provides the drawing area for top-level windows.
*/
-
-/*!
- \fn void QBackingStore::beginPaint(const QRegion &region)
-
- This function is called before painting onto the surface begins,
- with the \a region in which the painting will occur.
-
- \sa endPaint(), paintDevice()
-*/
-
/*!
- \fn void QBackingStore::endPaint(const QRegion &region)
-
- This function is called after painting onto the surface has ended,
- with the \a region in which the painting was performed.
-
- \sa beginPaint(), paintDevice()
-*/
-
-/*!
- \fn void QBackingStore::flush(QWindow *window, const QRegion &region,
- const QPoint &offset)
-
Flushes the given \a region from the specified \a window onto the
screen.
@@ -142,11 +120,23 @@ QWindow* QBackingStore::window() const
return d_ptr->window;
}
+/*!
+ This function is called before painting onto the surface begins,
+ with the \a region in which the painting will occur.
+
+ \sa endPaint(), paintDevice()
+*/
+
void QBackingStore::beginPaint(const QRegion &region)
{
d_ptr->platformBackingStore->beginPaint(region);
}
+/*!
+ This function is called after painting onto the surface has ended.
+
+ \sa beginPaint(), paintDevice()
+*/
void QBackingStore::endPaint()
{
d_ptr->platformBackingStore->endPaint();