summaryrefslogtreecommitdiff
path: root/source/pdf
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
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')
-rw-r--r--source/pdf/pdf-annot-edit.c4
-rw-r--r--source/pdf/pdf-appearance.c4
2 files changed, 4 insertions, 4 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;
diff --git a/source/pdf/pdf-appearance.c b/source/pdf/pdf-appearance.c
index 685ef8dc..2355637f 100644
--- a/source/pdf/pdf-appearance.c
+++ b/source/pdf/pdf-appearance.c
@@ -1532,7 +1532,7 @@ void pdf_update_pushbutton_appearance(fz_context *ctx, pdf_document *doc, pdf_ob
}
}
-void pdf_update_text_markup_appearance(fz_context *ctx, pdf_document *doc, pdf_annot *annot, fz_annot_type type)
+void pdf_update_text_markup_appearance(fz_context *ctx, pdf_document *doc, pdf_annot *annot, enum pdf_annot_type type)
{
float color[3];
float alpha;
@@ -2460,7 +2460,7 @@ void pdf_update_appearance(fz_context *ctx, pdf_document *doc, pdf_annot *annot)
if (!ap || !pdf_dict_get(ctx, ap, PDF_NAME_N) || pdf_obj_is_dirty(ctx, obj))
{
- fz_annot_type type = pdf_annot_type(ctx, annot);
+ enum pdf_annot_type type = pdf_annot_type(ctx, annot);
switch (type)
{
case PDF_ANNOT_WIDGET: