summaryrefslogtreecommitdiff
path: root/cbz
diff options
context:
space:
mode:
authorPaul Gardiner <paulg.artifex@glidos.net>2012-10-25 16:44:24 +0100
committerPaul Gardiner <paulg.artifex@glidos.net>2012-10-25 16:44:24 +0100
commitd8266814d24f5bdf95b81e66e9b06a5d188b5edd (patch)
tree03282b583686917c348492d8584b0a134c01e753 /cbz
parentc2a526b73e6654b99c66747a379a9218ab8683f4 (diff)
downloadmupdf-d8266814d24f5bdf95b81e66e9b06a5d188b5edd.tar.xz
Support separate rendering of the main page contents and the annotations
Diffstat (limited to 'cbz')
-rw-r--r--cbz/mucbz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cbz/mucbz.c b/cbz/mucbz.c
index 83737833..1fc2fbe6 100644
--- a/cbz/mucbz.c
+++ b/cbz/mucbz.c
@@ -477,7 +477,7 @@ cbz_init_document(cbz_document *doc)
doc->super.count_pages = (void*)cbz_count_pages;
doc->super.load_page = (void*)cbz_load_page;
doc->super.bound_page = (void*)cbz_bound_page;
- doc->super.run_page = (void*)cbz_run_page;
+ doc->super.run_page_contents = (void*)cbz_run_page;
doc->super.free_page = (void*)cbz_free_page;
doc->super.meta = (void*)cbz_meta;
}