summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-annot-edit.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-02-15 16:12:28 +0100
committerTor Andersson <tor.andersson@artifex.com>2018-02-27 14:08:02 +0100
commite5720af140822099b4f309e98ca5d269af4f8aee (patch)
tree4ea5c3454a01c07d682c02a4869ff2999f6435ef /source/pdf/pdf-annot-edit.c
parent3af0e2db71223493b7c9888980482743b87afd1b (diff)
downloadmupdf-e5720af140822099b4f309e98ca5d269af4f8aee.tar.xz
Remove typedef in favor of explicit enum keyword.
Avoids the silliness of fz_annot_type pdf_annot_type().
Diffstat (limited to 'source/pdf/pdf-annot-edit.c')
-rw-r--r--source/pdf/pdf-annot-edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pdf/pdf-annot-edit.c b/source/pdf/pdf-annot-edit.c
index 5142b8c1..e6f5f0d7 100644
--- a/source/pdf/pdf-annot-edit.c
+++ b/source/pdf/pdf-annot-edit.c
@@ -13,7 +13,7 @@
#define isdigit(c) (c >= '0' && c <= '9')
const char *
-pdf_string_from_annot_type(fz_context *ctx, fz_annot_type type)
+pdf_string_from_annot_type(fz_context *ctx, enum pdf_annot_type type)
{
switch (type)
{
@@ -97,7 +97,7 @@ static void check_allowed_subtypes(fz_context *ctx, pdf_annot *annot, pdf_obj *p
}
pdf_annot *
-pdf_create_annot(fz_context *ctx, pdf_page *page, fz_annot_type type)
+pdf_create_annot(fz_context *ctx, pdf_page *page, enum pdf_annot_type type)
{
pdf_annot *annot = NULL;
pdf_document *doc = page->doc;