| 3547 | } |
| 3548 | |
| 3549 | void Document::removePageAnnotation(int page, Annotation *annotation) |
| 3550 | { |
| 3551 | QUndoCommand *uc = new RemoveAnnotationCommand(this->d, annotation, page); |
| 3552 | d->m_undoStack->push(uc); |
| 3553 | } |
| 3554 | |
| 3555 | void Document::removePageAnnotations(int page, const QList<Annotation *> &annotations) |
| 3556 | { |
no outgoing calls