Use dBs for send gain automation controls too.

git-svn-id: svn://localhost/ardour2/branches/3.0@11539 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2012-02-28 13:40:30 +00:00
parent 3a4650cba7
commit cecf343109
2 changed files with 10 additions and 0 deletions

View file

@ -64,6 +64,8 @@ class Send : public Delivery
bool set_name (const std::string& str);
std::string value_as_string (boost::shared_ptr<AutomationControl>) const;
static uint32_t how_many_sends();
static void make_unique (XMLNode &, Session &);

View file

@ -357,3 +357,11 @@ Send::display_to_user () const
return true;
}
string
Send::value_as_string (boost::shared_ptr<AutomationControl> ac) const
{
return _amp->value_as_string (ac);
}