Replace struct cairo_surface_backend with cairo_surface_backend_t

This commit is contained in:
David Reveman 2005-01-13 14:48:15 +00:00
parent a2af89b04a
commit 3ae8c1ca65
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-01-13 David Reveman <c99drn@cs.umu.se>
* src/cairo_xcb_surface.c: Replace struct cairo_surface_backend with
cairo_surface_backend_t.
2005-01-13 Carl Worth <cworth@cworth.org>
* src/cairo_xlib_surface.c:

View file

@ -730,7 +730,7 @@ _cairo_xcb_surface_create_pattern (void *abstract_surface,
return CAIRO_INT_STATUS_UNSUPPORTED;
}
static const struct cairo_surface_backend cairo_xcb_surface_backend = {
static const cairo_surface_backend_t cairo_xcb_surface_backend = {
_cairo_xcb_surface_create_similar,
_cairo_xcb_surface_destroy,
_cairo_xcb_surface_pixels_per_inch,

View file

@ -730,7 +730,7 @@ _cairo_xcb_surface_create_pattern (void *abstract_surface,
return CAIRO_INT_STATUS_UNSUPPORTED;
}
static const struct cairo_surface_backend cairo_xcb_surface_backend = {
static const cairo_surface_backend_t cairo_xcb_surface_backend = {
_cairo_xcb_surface_create_similar,
_cairo_xcb_surface_destroy,
_cairo_xcb_surface_pixels_per_inch,