diff options
Diffstat (limited to 'src/circle.c')
-rw-r--r-- | src/circle.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/circle.c b/src/circle.c index 30237fa..cd4f09d 100644 --- a/src/circle.c +++ b/src/circle.c @@ -213,16 +213,14 @@ ganv_circle_bounds(GanvItem* item, } static void -ganv_circle_update(GanvItem* item, - double* affine, - int flags) +ganv_circle_update(GanvItem* item, int flags) { GanvCircle* circle = GANV_CIRCLE(item); GanvCircleImpl* impl = circle->impl; GanvItemClass* item_class = GANV_ITEM_CLASS(parent_class); if (item_class->update) { - (*item_class->update)(item, affine, flags); + (*item_class->update)(item, flags); } // Request redraw of old location |