* @brief Adds a straight line segment from the cursor to (x, y). */
| 928 | * @brief Adds a straight line segment from the cursor to (x, y). |
| 929 | */ |
| 930 | void Widgets::PainterContext::lineTo(qreal x, qreal y) |
| 931 | { |
| 932 | m_path.lineTo(x, y); |
| 933 | } |
| 934 | |
| 935 | /** |
| 936 | * @brief Adds a closed rectangle subpath at (x, y) with size (w, h). |
no outgoing calls
no test coverage detected