From e406f4b0f0fc90dc6ad8aba000122a7345195478 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Tue, 25 Oct 2005 16:02:08 +0000 Subject: [PATCH] Add explicit NULLs for unimplmented backend functions to better document what might be improved here. --- ChangeLog | 5 +++++ src/cairo-xcb-surface.c | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 58227a2df..8dd4e0d00 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-10-25 Carl Worth + + * src/cairo-xcb-surface.c: Add explicit NULLs for unimplmented + backend functions to better document what might be improved here. + 2005-10-25 Carl Worth * ROADMAP: Add critical bug #4863 to the 1.0.4 roadmap. diff --git a/src/cairo-xcb-surface.c b/src/cairo-xcb-surface.c index 49a6aaab3..91580c1d6 100644 --- a/src/cairo-xcb-surface.c +++ b/src/cairo-xcb-surface.c @@ -1040,7 +1040,13 @@ static const cairo_surface_backend_t cairo_xcb_surface_backend = { NULL, /* _cairo_xcb_surface_set_clip_region */ NULL, /* intersect_clip_path */ _cairo_xcb_surface_get_extents, - NULL /* show_glyphs */ + NULL, /* show_glyphs */ + NULL, /* fill_path */ + NULL, /* get_font_options */ + NULL, /* flush */ + NULL, /* mark_dirty_rectangle */ + NULL, /* scaled_font_fini */ + NULL /* scaled_glyph_fini */ }; /**