diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-08-18 14:52:43 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2008-08-18 14:54:21 -0400 |
commit | 00bc650455219e41fa20d3ec99321f4cbe97cbf1 (patch) | |
tree | 6103f2205c04baf649aa4d07abeb956bccbe76f8 /src/test-paginated-surface.c | |
parent | 4cd478b95f0ae803d1a0ab75197b1d389e2eba4c (diff) |
Add new public API cairo_surface_has_show_text_glyphs()
We added cairo_has_show_text_glyphs() before. Since this is really a
surface property, should have the surface method too. Like we added
cairo_surface_show_page()...
Diffstat (limited to 'src/test-paginated-surface.c')
-rw-r--r-- | src/test-paginated-surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test-paginated-surface.c b/src/test-paginated-surface.c index 48c73082..5d86986c 100644 --- a/src/test-paginated-surface.c +++ b/src/test-paginated-surface.c @@ -237,7 +237,7 @@ _test_paginated_surface_has_show_text_glyphs (void *abstract_surface) { test_paginated_surface_t *surface = abstract_surface; - return _cairo_surface_has_show_text_glyphs (surface->target); + return cairo_surface_has_show_text_glyphs (surface->target); } static cairo_int_status_t |