| 3574 | } |
| 3575 | |
| 3576 | bool DocumentPrivate::canModifyExternalAnnotations() const |
| 3577 | { |
| 3578 | Okular::SaveInterface *iface = qobject_cast<Okular::SaveInterface *>(m_generator); |
| 3579 | |
| 3580 | if (iface && iface->supportsOption(Okular::SaveInterface::SaveChanges) && iface->annotationProxy() && iface->annotationProxy()->supports(AnnotationProxy::Modification)) { |
| 3581 | return true; |
| 3582 | } |
| 3583 | |
| 3584 | return false; |
| 3585 | } |
| 3586 | |
| 3587 | bool DocumentPrivate::canRemoveExternalAnnotations() const |
| 3588 | { |
no test coverage detected