diff options
Diffstat (limited to 'src/circle.c')
-rw-r--r-- | src/circle.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/circle.c b/src/circle.c index edc3ae3..c1897f9 100644 --- a/src/circle.c +++ b/src/circle.c @@ -215,7 +215,6 @@ ganv_circle_bounds(GanvItem* item, static void ganv_circle_update(GanvItem* item, double* affine, - ArtSVP* clip_path, int flags) { GanvCircle* circle = GANV_CIRCLE(item); @@ -223,7 +222,7 @@ ganv_circle_update(GanvItem* item, GanvItemClass* item_class = GANV_ITEM_CLASS(parent_class); if (item_class->update) { - (*item_class->update)(item, affine, clip_path, flags); + (*item_class->update)(item, affine, flags); } // Request redraw of old location |