| 208 | } |
| 209 | |
| 210 | void File::appendPoint(const QPointF &point) |
| 211 | { |
| 212 | QList<QVariant> newPoints = m_metadata["Points"].toList(); |
| 213 | newPoints.append(point); |
| 214 | m_metadata["Points"] = newPoints; |
| 215 | } |
| 216 | |
| 217 | void File::appendPoints(const QList<QPointF> &points) |
| 218 | { |
no test coverage detected