summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2005-05-01 15:36:22 +0000
committerOwen Taylor <otaylor@src.gnome.org>2005-05-01 15:36:22 +0000
commit93fdbe64dcd1dab98cdd09545a43ac9329f11534 (patch)
tree55210f0ce76f3378ff789965faf1297f5560d7ed /examples
parent3fc02e41c1efd23af4eb0e34af0fd6fa2783ead6 (diff)
downloadpango-93fdbe64dcd1dab98cdd09545a43ac9329f11534.tar.gz
Fix for the change of cairo_clip() not to preserve the path.
2005-05-01 Owen Taylor <otaylor@redhat.com> * examples/cairoview.c: Fix for the change of cairo_clip() not to preserve the path.
Diffstat (limited to 'examples')
-rw-r--r--examples/cairoview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cairoview.c b/examples/cairoview.c
index a805595b..96c39886 100644
--- a/examples/cairoview.c
+++ b/examples/cairoview.c
@@ -165,7 +165,7 @@ update ()
cairo_clip (cr);
cairo_set_rgb_color (cr, 1.0, 1.0, 1.0);
- cairo_fill (cr);
+ cairo_paint (cr);
/* Draw the text in black */
cairo_set_rgb_color (cr, 0.0, 0.0, 0.0);