summaryrefslogtreecommitdiff
path: root/src/cairo-paginated-surface.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-06-06 16:54:03 -0700
committerCarl Worth <cworth@cworth.org>2006-06-06 16:54:03 -0700
commit746f66c3fce6de39ac9afa7be8bcf8f74c750e85 (patch)
treeddbb7133c6ca2a0d4e193bacb353bd40f2dc13ab /src/cairo-paginated-surface.c
parent5570bf0a9e99019ac24b2b856455afcf360c14fc (diff)
downloadcairo-746f66c3fce6de39ac9afa7be8bcf8f74c750e85.tar.gz
Fix bogus cairo_rectangle_fixed_t to be cairo_rectangle_int16_t.
This rectangle has regular integer values, not fixed-point values. So the old name was horribly wrong and misleading, (and yes I think it was even I that had suggested it).
Diffstat (limited to 'src/cairo-paginated-surface.c')
-rw-r--r--src/cairo-paginated-surface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-paginated-surface.c b/src/cairo-paginated-surface.c
index ed00cb8ac..f0ed51374 100644
--- a/src/cairo-paginated-surface.c
+++ b/src/cairo-paginated-surface.c
@@ -170,7 +170,7 @@ _cairo_paginated_surface_acquire_source_image (void *abstract_surface,
{
cairo_paginated_surface_t *surface = abstract_surface;
cairo_surface_t *image;
- cairo_rectangle_fixed_t extents;
+ cairo_rectangle_int16_t extents;
_cairo_surface_get_extents (surface->target, &extents);
@@ -317,7 +317,7 @@ _cairo_paginated_surface_intersect_clip_path (void *abstract_surface,
static cairo_int_status_t
_cairo_paginated_surface_get_extents (void *abstract_surface,
- cairo_rectangle_fixed_t *rectangle)
+ cairo_rectangle_int16_t *rectangle)
{
cairo_paginated_surface_t *surface = abstract_surface;
@@ -448,7 +448,7 @@ _cairo_paginated_surface_snapshot (void *abstract_other)
#if 0
return _cairo_surface_snapshot (other->meta);
#else
- cairo_rectangle_fixed_t extents;
+ cairo_rectangle_int16_t extents;
cairo_surface_t *surface;
_cairo_surface_get_extents (other->target, &extents);