diff options
author | Marius Storm-Olsen <marius.storm-olsen@nokia.com> | 2009-11-06 11:04:15 (GMT) |
---|---|---|
committer | Marius Storm-Olsen <marius.storm-olsen@nokia.com> | 2009-11-09 11:10:52 (GMT) |
commit | 4ad31892d735e6f1a7afffbf0bf8028663855adb (patch) | |
tree | 39d1cddf14853c00c4f2b1f55e62f3835d2925a4 /src/plugins/gfxdrivers/powervr | |
parent | 195f4b98fbf31a92e27be4533fc2ccae99372b82 (diff) | |
download | Qt-4ad31892d735e6f1a7afffbf0bf8028663855adb.zip Qt-4ad31892d735e6f1a7afffbf0bf8028663855adb.tar.gz Qt-4ad31892d735e6f1a7afffbf0bf8028663855adb.tar.bz2 |
API review: Rename numRects() -> rectCount()
QRegion::numRects() is marked obsolete.
Removed all usage of the old function inside Qt and test-cases.
Reviewed-by: Andreas Aardal Hanssen
Diffstat (limited to 'src/plugins/gfxdrivers/powervr')
-rw-r--r-- | src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.cpp b/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.cpp index 4a3787f..51a6c4e 100644 --- a/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.cpp +++ b/src/plugins/gfxdrivers/powervr/pvreglscreen/pvreglwindowsurface.cpp @@ -199,7 +199,7 @@ void PvrEglWindowSurface::setDirectRegion(const QRegion &r, int id) if (region.isEmpty()) { pvrQwsClearVisibleRegion(drawable); - } else if (region.numRects() == 1) { + } else if (region.rectCount() == 1) { QRect rect = region.boundingRect(); PvrQwsRect pvrRect; pvrRect.x = rect.x(); |