summaryrefslogtreecommitdiffstats
path: root/src/widgets/kernel/qwhatsthis.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2012-04-30 14:42:40 +0200
committerQt by Nokia <qt-info@nokia.com>2012-05-01 07:10:40 +0200
commit0b05e4cdd5800b9ea90eaface984dc21f506ac92 (patch)
treeb5295bc8a4307c161508c3bedd24b8bab7e11ff4 /src/widgets/kernel/qwhatsthis.cpp
parent1767e21123a6b3d9bfa71027ad42cb16b43f7b4f (diff)
Widgets: No longer use deprecated QPixmap::grabWindow(),grabWidget().
Change-Id: Icf0d6a672edcfd1d3d10275bb9a93bde29251e79 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Diffstat (limited to 'src/widgets/kernel/qwhatsthis.cpp')
-rw-r--r--src/widgets/kernel/qwhatsthis.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/widgets/kernel/qwhatsthis.cpp b/src/widgets/kernel/qwhatsthis.cpp
index 9d3493dc8a..5df69be020 100644
--- a/src/widgets/kernel/qwhatsthis.cpp
+++ b/src/widgets/kernel/qwhatsthis.cpp
@@ -47,6 +47,7 @@
#include "qdesktopwidget.h"
#include "qevent.h"
#include "qpixmap.h"
+#include "qscreen.h"
#include "qpainter.h"
#include "qtimer.h"
#include "qhash.h"
@@ -232,8 +233,8 @@ QWhatsThat::~QWhatsThat()
void QWhatsThat::showEvent(QShowEvent *)
{
- background = QPixmap::grabWindow(QApplication::desktop()->internalWinId(),
- x(), y(), width(), height());
+ background = QGuiApplication::primaryScreen()->grabWindow(QApplication::desktop()->internalWinId(),
+ x(), y(), width(), height());
}
void QWhatsThat::mousePressEvent(QMouseEvent* e)