mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
Fix pollution of global namespace by Evoral.
git-svn-id: svn://localhost/ardour2/branches/3.0@3947 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
8b951bb9ee
commit
1514039689
12 changed files with 64 additions and 63 deletions
|
|
@ -35,7 +35,7 @@ Control::Control(const Parameter& parameter, boost::shared_ptr<ControlList> list
|
|||
/** Get the currently effective value (ie the one that corresponds to current output)
|
||||
*/
|
||||
float
|
||||
Control::get_float(bool from_list, nframes_t frame) const
|
||||
Control::get_float(bool from_list, FrameTime frame) const
|
||||
{
|
||||
if (from_list)
|
||||
return _list->eval(frame);
|
||||
|
|
@ -45,7 +45,7 @@ Control::get_float(bool from_list, nframes_t frame) const
|
|||
|
||||
|
||||
void
|
||||
Control::set_float(float value, bool to_list, nframes_t frame)
|
||||
Control::set_float(float value, bool to_list, FrameTime frame)
|
||||
{
|
||||
_user_value = value;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue