diff options
author | Paul Gardiner <paul@glidos.net> | 2012-06-19 12:46:40 +0100 |
---|---|---|
committer | Paul Gardiner <paul@glidos.net> | 2012-06-19 12:46:40 +0100 |
commit | 6553b7d94d94c9adc1201c6cdf6532fe65b9e63d (patch) | |
tree | ce6a4095ae7bc6782874296866a4315c470d45ca /pdf/mupdf-internal.h | |
parent | acdd8f4d2bd1ff78fbf4fba93857ff6afbe4afcf (diff) | |
download | mupdf-6553b7d94d94c9adc1201c6cdf6532fe65b9e63d.tar.xz |
Fix bug 693133: MuPDF forms support: Text incorrectly transformed
Refactor the text-widget updating code to use the later-written, button-updating
technique, which accounts for rotation. Also now delays generation of
appearance streams until required for rendering.
Diffstat (limited to 'pdf/mupdf-internal.h')
-rw-r--r-- | pdf/mupdf-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pdf/mupdf-internal.h b/pdf/mupdf-internal.h index be77b07b..ea62084d 100644 --- a/pdf/mupdf-internal.h +++ b/pdf/mupdf-internal.h @@ -325,7 +325,7 @@ pdf_xobject *pdf_load_xobject(pdf_document *doc, pdf_obj *obj); pdf_obj *pdf_new_xobject(pdf_document *doc, fz_rect *bbox, fz_matrix *mat); pdf_xobject *pdf_keep_xobject(fz_context *ctx, pdf_xobject *xobj); void pdf_drop_xobject(fz_context *ctx, pdf_xobject *xobj); -void pdf_update_xobject_contents(pdf_document *xref, pdf_xobject *from, fz_buffer *buffer); +void pdf_update_xobject_contents(pdf_document *xref, pdf_xobject *form, fz_buffer *buffer); void pdf_update_appearance(pdf_document *doc, pdf_obj *obj); |