opengl: fix a typo in QOpenGLPaintDevice::dotsPerMeterY()

Fixes: QTBUG-95005
Pick-to: 6.2 6.1 5.15 5.12
Change-Id: I88ab9b757a5cfee520e07ac6280e31f9211342f0
Reviewed-by: Laszlo Agocs <laszlo.agocs@qt.io>
This commit is contained in:
Liang Qi 2021-07-06 12:00:17 +02:00
parent 1d6e9c786d
commit 85831bcfe6

View File

@ -331,7 +331,7 @@ void QOpenGLPaintDevice::setDotsPerMeterX(qreal dpmx)
void QOpenGLPaintDevice::setDotsPerMeterY(qreal dpmy) void QOpenGLPaintDevice::setDotsPerMeterY(qreal dpmy)
{ {
d_ptr->dpmx = dpmy; d_ptr->dpmy = dpmy;
} }
/*! /*!