summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authoraavit <qt_aavit@ovi.com>2012-08-17 14:15:36 +0200
committerQt by Nokia <qt-info@nokia.com>2012-08-18 10:55:47 +0200
commit94ac17c2ccbe3b3f3671848afda9430be214f8d5 (patch)
tree2de3e6785846238c76ec35f0b75e0c0c78b579d0 /src/gui
parentf6c58d242aa6c75d735ce9484c1f1acac3444ba6 (diff)
Clean up QScreen::grabWindow()
Handle 0 WId parameter as meaning "desktop window"/whole screen. Also, re-add the default values for the grab area, both for convenience and compatibility with QPixmap::grabWindow() in Qt4. Update the screenshot example so it doesn't comlain about usage of deprecated QPixmap::grabWindow(). Change-Id: I2ad229113ddb8ded0388f2ebc0e8c703c6657f1f Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/kernel/qscreen.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qscreen.h b/src/gui/kernel/qscreen.h
index 6c142162fe..2d88413ad6 100644
--- a/src/gui/kernel/qscreen.h
+++ b/src/gui/kernel/qscreen.h
@@ -129,7 +129,7 @@ public:
bool isPortrait(Qt::ScreenOrientation orientation) const;
bool isLandscape(Qt::ScreenOrientation orientation) const;
- QPixmap grabWindow(WId window, int x, int y, int w, int h);
+ QPixmap grabWindow(WId window, int x = 0, int y = 0, int w = -1, int h = -1);
qreal refreshRate() const;