Просмотр исходного кода

profiler: Use QWheelEvent position().toPoint()

QWheelEvent::pos() is deprecated. Make use of position().toPoint() instead.
Morph 4 лет назад
Родитель
Сommit
9ba812485a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/yuzu/debugger/profiler.cpp

+ 1 - 1
src/yuzu/debugger/profiler.cpp

@@ -163,7 +163,7 @@ void MicroProfileWidget::mouseReleaseEvent(QMouseEvent* ev) {
 }
 
 void MicroProfileWidget::wheelEvent(QWheelEvent* ev) {
-    const auto wheel_position = ev->pos();
+    const auto wheel_position = ev->position().toPoint();
     MicroProfileMousePosition(wheel_position.x() / x_scale, wheel_position.y() / y_scale,
                               ev->angleDelta().y() / 120);
     ev->accept();