Qt4 compile fix

This commit is contained in:
Mark Watkins 2014-04-10 04:46:33 +10:00
parent 4989b492f3
commit 96d6acac19

View File

@ -740,9 +740,11 @@ void MainWindow::DelayedScreenshot()
int h=height();
// Scale for high resolution displays (like Retina)
#if(QT_VERSION>=QT_VERSION_CHECK(5,0,0))
qreal pr=devicePixelRatio();
w/=pr;
h/=pr;
#endif
QPixmap pixmap=QPixmap::grabWindow(this->winId(),x(),y(),w,h);