| 60 | } |
| 61 | |
| 62 | void rectIncludeSafe(QRectF& rect, const QPointF& point) |
| 63 | { |
| 64 | if (rect.isValid()) |
| 65 | rectInclude(rect, point); |
| 66 | else |
| 67 | rect = QRectF(point.x(), point.y(), 0.0001, 0.0001); |
| 68 | } |
| 69 | |
| 70 | void rectInclude(QRectF& rect, const QRectF& other_rect) |
| 71 | { |
no test coverage detected