summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/mupdf/pdf/annot.h5
-rw-r--r--source/pdf/pdf-annot-edit.c6
2 files changed, 0 insertions, 11 deletions
diff --git a/include/mupdf/pdf/annot.h b/include/mupdf/pdf/annot.h
index bebe77f7..3ec2bc1f 100644
--- a/include/mupdf/pdf/annot.h
+++ b/include/mupdf/pdf/annot.h
@@ -215,11 +215,6 @@ int pdf_annot_modification_date(fz_context *ctx, pdf_annot *annot);
void pdf_set_annot_modification_date(fz_context *ctx, pdf_annot *annot, int time);
/*
- pdf_annot_irt: return the indirect reference that this annotation is in reply to.
-*/
-pdf_obj *pdf_annot_irt(fz_context *ctx, pdf_annot *annot);
-
-/*
pdf_set_free_text_details: set the position, text, font and color for a free text annotation.
Only base 14 fonts are supported and are specified by name.
*/
diff --git a/source/pdf/pdf-annot-edit.c b/source/pdf/pdf-annot-edit.c
index 730d7b93..3454ad97 100644
--- a/source/pdf/pdf-annot-edit.c
+++ b/source/pdf/pdf-annot-edit.c
@@ -1011,12 +1011,6 @@ pdf_set_annot_author(fz_context *ctx, pdf_annot *annot, const char *author)
pdf_dirty_annot(ctx, annot);
}
-pdf_obj *
-pdf_annot_irt(fz_context *ctx, pdf_annot *annot)
-{
- return pdf_dict_get(ctx, annot->obj, PDF_NAME_IRT);
-}
-
void
pdf_set_free_text_details(fz_context *ctx, pdf_annot *annot, fz_point *pos, char *text, char *font_name, float font_size, float color[3])
{