X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=inline;f=libdocument%2Fev-document-annotations.c;h=4523fb40db5b9c19555238418f424925d3d00e8f;hb=2297bff1e7d745f0f837d44feeda03244368d7f1;hp=f42ae7d5de6144b1ca400d9483c89aabaf0e0715;hpb=0dd0c92a0acb3d4aaecb7fd56e6ca71e89fef54a;p=evince.git diff --git a/libdocument/ev-document-annotations.c b/libdocument/ev-document-annotations.c index f42ae7d5..4523fb40 100644 --- a/libdocument/ev-document-annotations.c +++ b/libdocument/ev-document-annotations.c @@ -16,15 +16,15 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "ev-document-annotations.h" -EV_DEFINE_INTERFACE (EvDocumentAnnotations, ev_document_annotations, 0) +G_DEFINE_INTERFACE (EvDocumentAnnotations, ev_document_annotations, 0) static void -ev_document_annotations_class_init (EvDocumentAnnotationsIface *klass) +ev_document_annotations_default_init (EvDocumentAnnotationsInterface *klass) { } @@ -32,7 +32,7 @@ GList * ev_document_annotations_get_annotations (EvDocumentAnnotations *document_annots, EvPage *page) { - EvDocumentAnnotationsIface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots); + EvDocumentAnnotationsInterface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots); return iface->get_annotations (document_annots, page); } @@ -42,7 +42,7 @@ ev_document_annotations_annotation_set_contents (EvDocumentAnnotations *document EvAnnotation *annot, const gchar *contents) { - EvDocumentAnnotationsIface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots); + EvDocumentAnnotationsInterface *iface = EV_DOCUMENT_ANNOTATIONS_GET_IFACE (document_annots); iface->annotation_set_contents (document_annots, annot, contents); }