diff options
author | Carl Worth <cworth@cworth.org> | 2006-06-09 21:12:44 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2006-06-09 21:12:44 -0700 |
commit | 999315cc0ad326d31c66f2e6fa1ae72dfb9bb57e (patch) | |
tree | 91389acd6f16a320da5050a982370fa97d0b2df3 /src/cairo-clip.c | |
parent | 6f6bdb6663fc439387db6b410bf742de6b501015 (diff) |
Rename device_{x,y}_offset to {x,y}_device_offset for better consitency/grepability
Diffstat (limited to 'src/cairo-clip.c')
-rw-r--r-- | src/cairo-clip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-clip.c b/src/cairo-clip.c index 39229131..70728eae 100644 --- a/src/cairo-clip.c +++ b/src/cairo-clip.c @@ -438,8 +438,8 @@ _cairo_clip_clip (cairo_clip_t *clip, if (_cairo_surface_has_device_offset_or_scale (target)) { _cairo_path_fixed_init_copy (&path_transformed, path); _cairo_path_fixed_offset (&path_transformed, - _cairo_fixed_from_double (target->device_x_offset), - _cairo_fixed_from_double (target->device_y_offset)); + _cairo_fixed_from_double (target->x_device_offset), + _cairo_fixed_from_double (target->y_device_offset)); path = &path_transformed; } |