mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 14:15:46 +01:00
GUI: create_vca() API change
This commit is contained in:
parent
c656aaab3c
commit
7b597055ee
1 changed files with 2 additions and 2 deletions
|
|
@ -442,7 +442,7 @@ GroupTabs::assign_group_to_master (uint32_t which, RouteGroup* group, bool renam
|
|||
boost::shared_ptr<VCA> master;
|
||||
|
||||
if (which == 0) {
|
||||
if (_session->vca_manager().create_vca (1)) {
|
||||
if (_session->vca_manager().create_vca (1).empty ()) {
|
||||
/* error */
|
||||
return;
|
||||
}
|
||||
|
|
@ -499,7 +499,7 @@ GroupTabs::assign_some_to_master (uint32_t which, RouteList rl, std::string vcan
|
|||
bool set_name = false;
|
||||
|
||||
if (which == 0) {
|
||||
if (_session->vca_manager().create_vca (1)) {
|
||||
if (_session->vca_manager().create_vca (1).empty ()) {
|
||||
/* error */
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue