summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@src.gnome.org>2006-02-06 18:07:02 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-02-06 18:07:02 +0000
commit52ccd41e9b016cd96ac937502d9edf0ef767c599 (patch)
treef1c2c2a8bc1254dd8961bc14d98e621e5f7404e0
parent75235308b9d8d30e72428627f345bcbf09641e5b (diff)
downloadpango-52ccd41e9b016cd96ac937502d9edf0ef767c599.tar.gz
Cosmetic.
-rw-r--r--examples/viewer-cairo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/viewer-cairo.c b/examples/viewer-cairo.c
index 5743a22e..baabe2dc 100644
--- a/examples/viewer-cairo.c
+++ b/examples/viewer-cairo.c
@@ -27,7 +27,7 @@
#include <cairo-xlib.h>
static cairo_surface_t *
-x_cairo_view_create_surface (gpointer instance,
+cairo_x_view_create_surface (gpointer instance,
gpointer surface,
int width,
int height)
@@ -40,14 +40,14 @@ x_cairo_view_create_surface (gpointer instance,
width, height);
}
-static CairoViewerIface x_cairo_viewer_iface = {
+static CairoViewerIface cairo_x_viewer_iface = {
&x_viewer,
- x_cairo_view_create_surface
+ cairo_x_view_create_surface
};
const CairoViewerIface *
get_default_cairo_viewer_iface (void)
{
- return &x_cairo_viewer_iface;
+ return &cairo_x_viewer_iface;
}
#endif /* HAVE_CAIRO_XLIB */