summaryrefslogtreecommitdiff
path: root/source/fitz/trace-device.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-02-19 17:01:24 +0100
committerTor Andersson <tor.andersson@artifex.com>2016-02-22 14:31:17 +0100
commit8888bd47b3e3cd9089287df2320daccd98852342 (patch)
treea8819965dd28c013b99f0d2433b05e8aab6bc0b2 /source/fitz/trace-device.c
parentbbc4678dd53e3742b5ce7f96aba03038215bbbc4 (diff)
downloadmupdf-8888bd47b3e3cd9089287df2320daccd98852342.tar.xz
Rename fz_path_processor to fz_path_walker.
Diffstat (limited to 'source/fitz/trace-device.c')
-rw-r--r--source/fitz/trace-device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/trace-device.c b/source/fitz/trace-device.c
index 471c71ab..d93906e0 100644
--- a/source/fitz/trace-device.c
+++ b/source/fitz/trace-device.c
@@ -85,7 +85,7 @@ trace_close(fz_context *ctx, void *arg)
fz_printf(ctx, out, "<closepath/>\n");
}
-static const fz_path_processor trace_path_proc =
+static const fz_path_walker trace_path_walker =
{
trace_moveto,
trace_lineto,
@@ -96,7 +96,7 @@ static const fz_path_processor trace_path_proc =
static void
fz_trace_path(fz_context *ctx, fz_output *out, const fz_path *path)
{
- fz_process_path(ctx, &trace_path_proc, out, path);
+ fz_walk_path(ctx, path, &trace_path_walker, out);
}
static void