| 16 | } |
| 17 | |
| 18 | constexpr inline const QPointF operator*(const QPointF &a, const QPointF &b) |
| 19 | { |
| 20 | return QPointF(a.x() * b.x(), a.y() * b.y()); |
| 21 | } |
| 22 | |
| 23 | bool QQuickWindowScaled::event(QEvent *e) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected