mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
fix bad dynamic cast
git-svn-id: svn://localhost/ardour2/trunk@2226 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
8a58d67a25
commit
89b6edb0ce
1 changed files with 1 additions and 1 deletions
|
|
@ -1059,7 +1059,7 @@ ProcessorBox::edit_processor (boost::shared_ptr<Processor> processor)
|
|||
}
|
||||
}
|
||||
|
||||
if ((send = boost::dynamic_pointer_cast<Send> (send)) != 0) {
|
||||
if ((send = boost::dynamic_pointer_cast<Send> (processor)) != 0) {
|
||||
|
||||
if (!_session.engine().connected()) {
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue