JackPort::connect() fixup from torben

git-svn-id: svn://localhost/ardour2/branches/3.0@3825 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-09-28 23:13:16 +00:00
parent 9f3b11444b
commit f387fef0c0

View file

@ -51,6 +51,9 @@ class JackPort : public virtual Port, public PortConnectableByName {
int reconnect ();
int connect (Port& other) {
if( _flags & IsOutput ) {
return 0;
}
return connect (other.name());
}