diff options
author | José Aliste <[email protected]> | 2012-06-27 08:51:19 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-08-28 16:04:00 +0200 |
commit | 0f5c79f2e03bd71b91d2fbf3aa48f4ffbf1dd1b1 (patch) | |
tree | 73c11f5dd58cbe67e9fc03810825648abae82434 /libdocument/ev-document-annotations.c | |
parent | 7e53c5708bd38b99adf1a4b363ed2c21304dccdd (diff) | |
download | atril-0f5c79f2e03bd71b91d2fbf3aa48f4ffbf1dd1b1.tar.bz2 atril-0f5c79f2e03bd71b91d2fbf3aa48f4ffbf1dd1b1.tar.xz |
libdocument: Add remove_annotation to DocumentAnnotations.
https://bugzilla.gnome.org/show_bug.cgi?id=649044
origin commit:
https://git.gnome.org/browse/evince/commit/?id=d0ed4e6
Diffstat (limited to 'libdocument/ev-document-annotations.c')
-rw-r--r-- | libdocument/ev-document-annotations.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libdocument/ev-document-annotations.c b/libdocument/ev-document-annotations.c index 05084906..a732f3fc 100644 --- a/libdocument/ev-document-annotations.c +++ b/libdocument/ev-document-annotations.c @@ -73,3 +73,21 @@ ev_document_annotations_can_add_annotation (EvDocumentAnnotations *document_anno return iface->add_annotation != NULL; } + +void +ev_document_annotations_remove_annotation (EvDocumentAnnotations *document_annots, + EvAnnotation *annot) +{ + EvDocumentAnnotationsInterface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots); + + if (iface->remove_annotation) + iface->remove_annotation (document_annots, annot); +} + +gboolean +ev_document_annotations_can_remove_annotation (EvDocumentAnnotations *document_annots) +{ + EvDocumentAnnotationsInterface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots); + + return iface->remove_annotation != NULL; +} |