From ea671d1254dad3b9ef5a8fbdd9729c3ada2a49b2 Mon Sep 17 00:00:00 2001 From: Robin Watts Date: Thu, 1 Mar 2012 19:42:28 +0000 Subject: 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. --- fitz/base_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fitz/base_context.c') 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; -- cgit v1.2.3