| 439 | } |
| 440 | |
| 441 | EditFormTextCommand::EditFormTextCommand(Okular::DocumentPrivate *docPriv, Okular::FormFieldText *form, int pageNumber, const QString &newContents, int newCursorPos, const QString &prevContents, int prevCursorPos, int prevAnchorPos) |
| 442 | : EditTextCommand(newContents, newCursorPos, prevContents, prevCursorPos, prevAnchorPos) |
| 443 | , m_docPriv(docPriv) |
| 444 | , m_form(form) |
| 445 | , m_pageNumber(pageNumber) |
| 446 | { |
| 447 | setText(i18nc("Edit an form's text contents", "edit form contents")); |
| 448 | } |
| 449 | |
| 450 | void EditFormTextCommand::undo() |
| 451 | { |
nothing calls this directly
no outgoing calls
no test coverage detected