Fix setup of port insert IO names.

git-svn-id: svn://localhost/ardour2/branches/3.0@6276 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-12-04 11:08:53 +00:00
parent 9ad2875905
commit d901932f07

View file

@ -184,7 +184,7 @@ PortInsert::set_name (const std::string& name)
{
bool ret = Processor::set_name (name);
ret = (_input->set_name (name) || _output->set_name (name));
ret = (ret && _input->set_name (name) && _output->set_name (name));
return ret;
}