diff options
author | Carl Worth <cworth@cworth.org> | 2005-07-28 11:46:01 +0000 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2005-07-28 11:46:01 +0000 |
commit | 0e0f2571a4e6a1d99f8a3fe6e357cb49a51c30e2 (patch) | |
tree | 07b6577ca0974c965c5bd0321b7396665610dc4e /src | |
parent | d4056b1d1570f1e7c8636a54d2cd1b2a2ca8eb9c (diff) |
Remove const qualifiers that only make things happy with a from-cvs version of freetype. Now we should be back to being happy with a released version.
Diffstat (limited to 'src')
-rw-r--r-- | src/cairo-ft-font.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cairo-ft-font.c b/src/cairo-ft-font.c index 3a762c205..afe80dffd 100644 --- a/src/cairo-ft-font.c +++ b/src/cairo-ft-font.c @@ -1875,7 +1875,7 @@ _cairo_ft_scaled_font_show_glyphs (void *abstract_font, static int -_move_to (const FT_Vector *to, void *closure) +_move_to (FT_Vector *to, void *closure) { cairo_path_fixed_t *path = closure; cairo_fixed_t x, y; @@ -1890,7 +1890,7 @@ _move_to (const FT_Vector *to, void *closure) } static int -_line_to (const FT_Vector *to, void *closure) +_line_to (FT_Vector *to, void *closure) { cairo_path_fixed_t *path = closure; cairo_fixed_t x, y; @@ -1904,7 +1904,7 @@ _line_to (const FT_Vector *to, void *closure) } static int -_conic_to (const FT_Vector *control, const FT_Vector *to, void *closure) +_conic_to (FT_Vector *control, FT_Vector *to, void *closure) { cairo_path_fixed_t *path = closure; @@ -1937,8 +1937,8 @@ _conic_to (const FT_Vector *control, const FT_Vector *to, void *closure) } static int -_cubic_to (const FT_Vector *control1, const FT_Vector *control2, - const FT_Vector *to, void *closure) +_cubic_to (FT_Vector *control1, FT_Vector *control2, + FT_Vector *to, void *closure) { cairo_path_fixed_t *path = closure; cairo_fixed_t x0, y0; |