summaryrefslogtreecommitdiff
path: root/fitz/base_context.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-03-01 19:42:28 +0000
committerRobin Watts <robin.watts@artifex.com>2012-03-01 19:42:28 +0000
commitea671d1254dad3b9ef5a8fbdd9729c3ada2a49b2 (patch)
tree8a3df1c20e117ae9c06c266526e4be553ffa355a /fitz/base_context.c
parentbcf7519882ba6f7b8f4b8047fb1f94bc9bd1ec6e (diff)
downloadmupdf-ea671d1254dad3b9ef5a8fbdd9729c3ada2a49b2.tar.xz
Add some more docs to fitz.h
Add docs for fz_store, fz_image, fz_halftones. Move fz_item definition into res_store.c as it does not need to be external. Rename fz_store_context to fz_keep_store_context to be consistent.
Diffstat (limited to 'fitz/base_context.c')
-rw-r--r--fitz/base_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/base_context.c b/fitz/base_context.c
index d1ce63ae..2eeb6683 100644
--- a/fitz/base_context.c
+++ b/fitz/base_context.c
@@ -122,7 +122,7 @@ fz_clone_context_internal(fz_context *ctx)
if (ctx == NULL || ctx->alloc == NULL)
return NULL;
new_ctx = new_context_phase1(ctx->alloc, ctx->locks);
- new_ctx->store = fz_store_keep(ctx);
+ new_ctx->store = fz_keep_store_context(ctx);
new_ctx->glyph_cache = fz_keep_glyph_cache(ctx);
new_ctx->font = fz_keep_font_context(ctx);
return new_ctx;