summaryrefslogtreecommitdiff
path: root/pdf/pdf_parse.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-01-27 14:16:58 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-01-27 14:18:22 +0100
commit03b276d3f2db3feecb522f101e0da065c4af53d4 (patch)
tree512eabad1f8b5516003c254c5cf10439ba79a98c /pdf/pdf_parse.c
parent40575c42719566f3585c5aa67129a8a5b7285aa7 (diff)
downloadmupdf-03b276d3f2db3feecb522f101e0da065c4af53d4.tar.xz
Rename pdf_xref type to pdf_document.
Diffstat (limited to 'pdf/pdf_parse.c')
-rw-r--r--pdf/pdf_parse.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pdf/pdf_parse.c b/pdf/pdf_parse.c
index b2f4fbf7..220eb30c 100644
--- a/pdf/pdf_parse.c
+++ b/pdf/pdf_parse.c
@@ -171,7 +171,7 @@ pdf_to_utf8_name(fz_context *ctx, fz_obj *src)
}
fz_obj *
-pdf_parse_array(pdf_xref *xref, fz_stream *file, char *buf, int cap)
+pdf_parse_array(pdf_document *xref, fz_stream *file, char *buf, int cap)
{
fz_obj *ary = NULL;
fz_obj *obj = NULL;
@@ -312,7 +312,7 @@ end:
}
fz_obj *
-pdf_parse_dict(pdf_xref *xref, fz_stream *file, char *buf, int cap)
+pdf_parse_dict(pdf_document *xref, fz_stream *file, char *buf, int cap)
{
fz_obj *dict = NULL;
fz_obj *key = NULL;
@@ -414,7 +414,7 @@ pdf_parse_dict(pdf_xref *xref, fz_stream *file, char *buf, int cap)
}
fz_obj *
-pdf_parse_stm_obj(pdf_xref *xref, fz_stream *file, char *buf, int cap)
+pdf_parse_stm_obj(pdf_document *xref, fz_stream *file, char *buf, int cap)
{
int tok;
int len;
@@ -444,7 +444,7 @@ pdf_parse_stm_obj(pdf_xref *xref, fz_stream *file, char *buf, int cap)
}
fz_obj *
-pdf_parse_ind_obj(pdf_xref *xref,
+pdf_parse_ind_obj(pdf_document *xref,
fz_stream *file, char *buf, int cap,
int *onum, int *ogen, int *ostmofs)
{