summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Johnson <ajohnson@redneon.com>2008-02-17 19:49:39 +1030
committerAdrian Johnson <ajohnson@redneon.com>2008-02-17 21:33:25 +1030
commit8fb624dbf2c660fbbf6d6964f7876656e1b62e41 (patch)
tree9635b02d6bdab307a30eab1c070cc255f71d1123
parentd2a1576941e46fb71eda8b27bd3df4de691df6ff (diff)
Use correct prefix for _cairo_pdf_operators_stroke
s/operator/operators/
-rw-r--r--src/cairo-pdf-operators-private.h10
-rw-r--r--src/cairo-pdf-operators.c10
-rw-r--r--src/cairo-pdf-surface.c20
-rw-r--r--src/cairo-ps-surface.c10
4 files changed, 25 insertions, 25 deletions
diff --git a/src/cairo-pdf-operators-private.h b/src/cairo-pdf-operators-private.h
index 5957a8986..36bd2e128 100644
--- a/src/cairo-pdf-operators-private.h
+++ b/src/cairo-pdf-operators-private.h
@@ -86,11 +86,11 @@ _cairo_pdf_operators_clip (cairo_pdf_operators_t *pdf_operators,
cairo_fill_rule_t fill_rule);
cairo_private cairo_int_status_t
-_cairo_pdf_operator_stroke (cairo_pdf_operators_t *pdf_operators,
- cairo_path_fixed_t *path,
- cairo_stroke_style_t *style,
- cairo_matrix_t *ctm,
- cairo_matrix_t *ctm_inverse);
+_cairo_pdf_operators_stroke (cairo_pdf_operators_t *pdf_operators,
+ cairo_path_fixed_t *path,
+ cairo_stroke_style_t *style,
+ cairo_matrix_t *ctm,
+ cairo_matrix_t *ctm_inverse);
cairo_private cairo_int_status_t
_cairo_pdf_operators_fill (cairo_pdf_operators_t *pdf_operators,
diff --git a/src/cairo-pdf-operators.c b/src/cairo-pdf-operators.c
index 7b66ebbab..75b4b7b7c 100644
--- a/src/cairo-pdf-operators.c
+++ b/src/cairo-pdf-operators.c
@@ -546,11 +546,11 @@ _cairo_pdf_operators_emit_stroke_style (cairo_pdf_operators_t *pdf_operators,
cairo_int_status_t
-_cairo_pdf_operator_stroke (cairo_pdf_operators_t *pdf_operators,
- cairo_path_fixed_t *path,
- cairo_stroke_style_t *style,
- cairo_matrix_t *ctm,
- cairo_matrix_t *ctm_inverse)
+_cairo_pdf_operators_stroke (cairo_pdf_operators_t *pdf_operators,
+ cairo_path_fixed_t *path,
+ cairo_stroke_style_t *style,
+ cairo_matrix_t *ctm,
+ cairo_matrix_t *ctm_inverse)
{
cairo_status_t status;
cairo_matrix_t m;
diff --git a/src/cairo-pdf-surface.c b/src/cairo-pdf-surface.c
index 0cf5404a2..cd7cec460 100644
--- a/src/cairo-pdf-surface.c
+++ b/src/cairo-pdf-surface.c
@@ -3868,11 +3868,11 @@ _cairo_pdf_surface_write_smask_group (cairo_pdf_surface_t *surface,
group->fill_rule);
break;
case PDF_STROKE:
- status = _cairo_pdf_operator_stroke (&surface->pdf_operators,
- &group->path,
- group->style,
- &group->ctm,
- &group->ctm_inverse);
+ status = _cairo_pdf_operators_stroke (&surface->pdf_operators,
+ &group->path,
+ group->style,
+ &group->ctm,
+ &group->ctm_inverse);
break;
case PDF_SHOW_GLYPHS:
status = _cairo_pdf_operators_show_glyphs (&surface->pdf_operators,
@@ -4369,11 +4369,11 @@ _cairo_pdf_surface_stroke (void *abstract_surface,
if (status)
return status;
- status = _cairo_pdf_operator_stroke (&surface->pdf_operators,
- path,
- style,
- ctm,
- ctm_inverse);
+ status = _cairo_pdf_operators_stroke (&surface->pdf_operators,
+ path,
+ style,
+ ctm,
+ ctm_inverse);
if (status)
return status;
diff --git a/src/cairo-ps-surface.c b/src/cairo-ps-surface.c
index 4263e4a5d..760ddd281 100644
--- a/src/cairo-ps-surface.c
+++ b/src/cairo-ps-surface.c
@@ -2966,11 +2966,11 @@ _cairo_ps_surface_stroke (void *abstract_surface,
if (status == CAIRO_INT_STATUS_NOTHING_TO_DO)
return CAIRO_STATUS_SUCCESS;
- return _cairo_pdf_operator_stroke (&surface->pdf_operators,
- path,
- style,
- ctm,
- ctm_inverse);
+ return _cairo_pdf_operators_stroke (&surface->pdf_operators,
+ path,
+ style,
+ ctm,
+ ctm_inverse);
}
static cairo_int_status_t