diff options
author | David Robillard <d@drobilla.net> | 2011-12-13 21:38:09 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-13 21:38:09 +0000 |
commit | 635cf8f91b2405dec530ac813d02a7440c3c836b (patch) | |
tree | a7dcb75e96728ff2acd19f00f5367ca660032c50 /ganv | |
parent | 4cdd7331a69e2f714b440644bd36334031cfbccc (diff) | |
download | ganv-635cf8f91b2405dec530ac813d02a7440c3c836b.tar.gz ganv-635cf8f91b2405dec530ac813d02a7440c3c836b.tar.bz2 ganv-635cf8f91b2405dec530ac813d02a7440c3c836b.zip |
Remove ganv_item_raise and ganv_item_lower.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@3869 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ganv')
-rw-r--r-- | ganv/canvas-base.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ganv/canvas-base.h b/ganv/canvas-base.h index bca4951..a6abe5f 100644 --- a/ganv/canvas-base.h +++ b/ganv/canvas-base.h @@ -175,16 +175,6 @@ void ganv_item_set_valist(GanvItem* item, /* Move an item by the specified amount */ void ganv_item_move(GanvItem* item, double dx, double dy); -/* Raise an item in the z-order of its parent group by the specified number of - * positions. - */ -void ganv_item_raise(GanvItem* item, int positions); - -/* Lower an item in the z-order of its parent group by the specified number of - * positions. - */ -void ganv_item_lower(GanvItem* item, int positions); - /* Raise an item to the top of its parent group's z-order. */ void ganv_item_raise_to_top(GanvItem* item); |