summaryrefslogtreecommitdiff
path: root/src/cairo-path-bounds.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2003-09-27 05:00:47 +0000
committerCarl Worth <cworth@cworth.org>2003-09-27 05:00:47 +0000
commit60d541ee6a85a63638e2d30623f703d0c8e474c7 (patch)
tree82faad9bec09b712ac4be525e5bbbf184d2313f1 /src/cairo-path-bounds.c
parent4dc8b3a312d0f390306131006e6d87a25e41ce58 (diff)
downloadcairo-60d541ee6a85a63638e2d30623f703d0c8e474c7.tar.gz
Fixed some internal enums that had been mistakenly converted to lowercase at some point.
Diffstat (limited to 'src/cairo-path-bounds.c')
-rw-r--r--src/cairo-path-bounds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-path-bounds.c b/src/cairo-path-bounds.c
index f9b92b3cc..b8642f0a6 100644
--- a/src/cairo-path-bounds.c
+++ b/src/cairo-path-bounds.c
@@ -152,7 +152,7 @@ _cairo_path_bounds (cairo_path_t *path, double *x1, double *y1, double *x2, doub
_cairo_path_bounder_init (&bounder);
- status = _cairo_path_interpret (path, cairo_path_direction_forward, &cb, &bounder);
+ status = _cairo_path_interpret (path, CAIRO_DIRECTION_FORWARD, &cb, &bounder);
if (status) {
*x1 = *y1 = *x2 = *y2 = 0.0;
_cairo_path_bounder_fini (&bounder);