signed VCA numbers
This commit is contained in:
parent
b37ec38d86
commit
965def3caf
@ -44,10 +44,10 @@ class LIBARDOUR_API VCAManager : public SessionHandleRef, public PBD::StatefulDe
|
||||
VCAManager (ARDOUR::Session&);
|
||||
~VCAManager ();
|
||||
|
||||
int create_vca (uint32_t n, std::string const & name = std::string());
|
||||
int create_vca (uint32_t how_many, std::string const & name = std::string());
|
||||
void remove_vca (boost::shared_ptr<VCA>);
|
||||
|
||||
boost::shared_ptr<VCA> vca_by_number(uint32_t) const;
|
||||
boost::shared_ptr<VCA> vca_by_number(int32_t) const;
|
||||
|
||||
VCAList vcas() const;
|
||||
VCAList::size_type n_vcas() const { return _vcas.size(); }
|
||||
|
@ -116,7 +116,7 @@ VCAManager::remove_vca (boost::shared_ptr<VCA> vca)
|
||||
}
|
||||
|
||||
boost::shared_ptr<VCA>
|
||||
VCAManager::vca_by_number (uint32_t n) const
|
||||
VCAManager::vca_by_number (int32_t n) const
|
||||
{
|
||||
Mutex::Lock lm (lock);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user