diff options
author | David Robillard <d@drobilla.net> | 2014-04-26 16:49:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-04-26 16:49:15 +0000 |
commit | 588fc95adb7e21fcede267897e31f673b2619b42 (patch) | |
tree | 424e86aabd9696901f9f8ab3f554b82df9443c26 /src/PatchageEvent.cpp | |
parent | 705dd2555edba4b0355996acd9fd82c59b5bee27 (diff) | |
download | patchage-588fc95adb7e21fcede267897e31f673b2619b42.tar.gz patchage-588fc95adb7e21fcede267897e31f673b2619b42.tar.bz2 patchage-588fc95adb7e21fcede267897e31f673b2619b42.zip |
Clean up Ganv API.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5367 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageEvent.cpp')
-rw-r--r-- | src/PatchageEvent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp index a30ea57..bee95ba 100644 --- a/src/PatchageEvent.cpp +++ b/src/PatchageEvent.cpp @@ -106,7 +106,7 @@ PatchageEvent::execute(Patchage* patchage) patchage->error_msg((format("Unable to find port `%1%' to disconnect") % _port_2).str()); else - patchage->canvas()->remove_edge(port_1, port_2); + patchage->canvas()->remove_edge_between(port_1, port_2); } } |