diff options
author | David Robillard <d@drobilla.net> | 2011-12-12 19:49:12 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-12 19:49:12 +0000 |
commit | 2df06ae2839206a2005e926d7674a8d519b91012 (patch) | |
tree | 8ac825936f6850b9956dd778b53104022be572fd /ganv | |
parent | 08267ca1df0861f7606ae49f5c66136ec9ddfa6e (diff) | |
download | ganv-2df06ae2839206a2005e926d7674a8d519b91012.tar.gz ganv-2df06ae2839206a2005e926d7674a8d519b91012.tar.bz2 ganv-2df06ae2839206a2005e926d7674a8d519b91012.zip |
Remove unused clip_path parameter to item update method.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@3860 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ganv')
-rw-r--r-- | ganv/canvas-base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ganv/canvas-base.h b/ganv/canvas-base.h index 33e995e..80afc8c 100644 --- a/ganv/canvas-base.h +++ b/ganv/canvas-base.h @@ -115,7 +115,7 @@ struct _GanvItemClass { * affine, if used, is a pointer to a 6-element array of doubles. The * update method also recomputes the bounding box of the item. */ - void (* update)(GanvItem* item, double* affine, ArtSVP* clip_path, int flags); + void (* update)(GanvItem* item, double* affine, int flags); /* Realize an item -- create GCs, etc. */ void (* realize)(GanvItem* item); |