mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
convert use of operator* for tim::line types with ::scale(ratio_t)
This commit is contained in:
parent
48f4f9bf9c
commit
c8feef51ab
6 changed files with 9 additions and 11 deletions
|
|
@ -360,7 +360,7 @@ void
|
|||
ControlList::_x_scale (ratio_t const & factor)
|
||||
{
|
||||
for (iterator i = _events.begin(); i != _events.end(); ++i) {
|
||||
(*i)->when = (*i)->when.operator* (factor);
|
||||
(*i)->when = (*i)->when.scale (factor);
|
||||
}
|
||||
|
||||
mark_dirty ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue