summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2013-06-20 13:09:20 +0100
committerRobin Watts <robin.watts@artifex.com>2013-06-20 13:09:55 +0100
commit1ae8f19179c5f0f8c6352b3c7855465325d5449a (patch)
tree118bdfb064a1b581257930007469a02ddd4672f1
parentf3c59bd3396d79adaf86f3ed16c0f34cc66fe255 (diff)
downloadmupdf-1ae8f19179c5f0f8c6352b3c7855465325d5449a.tar.xz
Comment fixes (rename fz_ to pdf_ was missed)
-rw-r--r--include/mupdf/pdf/annot.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mupdf/pdf/annot.h b/include/mupdf/pdf/annot.h
index 52081a48..fb5c6f1b 100644
--- a/include/mupdf/pdf/annot.h
+++ b/include/mupdf/pdf/annot.h
@@ -69,25 +69,25 @@ void pdf_update_annot(pdf_document *, pdf_annot *annot);
void pdf_free_annot(fz_context *ctx, pdf_annot *link);
/*
- fz_create_annot: create a new annotation of the specified type on the
+ pdf_create_annot: create a new annotation of the specified type on the
specified page. The returned pdf_annot structure is owned by the page
and does not need to be freed.
*/
pdf_annot *pdf_create_annot(pdf_document *doc, pdf_page *page, fz_annot_type type);
/*
- fz_delete_annot: delete an annotation
+ pdf_delete_annot: delete an annotation
*/
void pdf_delete_annot(pdf_document *doc, pdf_page *page, pdf_annot *annot);
/*
- fz_set_annot_appearance: update the appearance of an annotation based
+ pdf_set_annot_appearance: update the appearance of an annotation based
on a display list.
*/
void pdf_set_annot_appearance(pdf_document *doc, pdf_annot *annot, fz_rect *rect, fz_display_list *disp_list);
/*
- fz_set_markup_annot_quadpoints: set the quadpoints for a text-markup annotation.
+ pdf_set_markup_annot_quadpoints: set the quadpoints for a text-markup annotation.
*/
void pdf_set_markup_annot_quadpoints(pdf_document *doc, pdf_annot *annot, fz_point *qp, int n);