| 146 | } |
| 147 | |
| 148 | ModifyAnnotationPropertiesCommand::ModifyAnnotationPropertiesCommand(DocumentPrivate *docPriv, Annotation *annotation, int pageNumber, const QDomNode &oldProperties, const QDomNode &newProperties) |
| 149 | : m_docPriv(docPriv) |
| 150 | , m_annotation(annotation) |
| 151 | , m_pageNumber(pageNumber) |
| 152 | , m_prevProperties(oldProperties) |
| 153 | , m_newProperties(newProperties) |
| 154 | { |
| 155 | setText(i18nc("Modify an annotation's internal properties (Color, line-width, etc.)", "modify annotation properties")); |
| 156 | } |
| 157 | |
| 158 | void ModifyAnnotationPropertiesCommand::undo() |
| 159 | { |
nothing calls this directly
no outgoing calls
no test coverage detected