| 80 | } |
| 81 | |
| 82 | void QtAnnotation::insertCoordinate(const int& index, const float& x, const float& y) { |
| 83 | prepareGeometryChange(); |
| 84 | if (_annotation) { |
| 85 | _annotation->insertCoordinate(index, x, y); |
| 86 | } |
| 87 | onAnnotationChanged(); |
| 88 | emit annotationChanged(this); |
| 89 | } |
| 90 | |
| 91 | void QtAnnotation::insertCoordinate(const int& index, const Point& xy){ |
| 92 | prepareGeometryChange(); |
no outgoing calls
no test coverage detected