NO-OP: fix function name spelling
This commit is contained in:
parent
66b3ad79c1
commit
09bddcad10
@ -1562,7 +1562,7 @@ AudioRegionView::add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *ev, b
|
|||||||
|
|
||||||
trackview.editor().begin_reversible_command (_("add gain control point"));
|
trackview.editor().begin_reversible_command (_("add gain control point"));
|
||||||
|
|
||||||
_fx_line->enable_autoation ();
|
_fx_line->enable_automation ();
|
||||||
|
|
||||||
trackview.session()->add_command (new MementoCommand<AutomationList>(*_fx_line->the_list(), &before, &after));
|
trackview.session()->add_command (new MementoCommand<AutomationList>(*_fx_line->the_list(), &before, &after));
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ RegionFxLine::get_origin() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
RegionFxLine::enable_autoation ()
|
RegionFxLine::enable_automation ()
|
||||||
{
|
{
|
||||||
std::shared_ptr<AutomationControl> ac = _ac.lock ();
|
std::shared_ptr<AutomationControl> ac = _ac.lock ();
|
||||||
if (ac) {
|
if (ac) {
|
||||||
@ -69,14 +69,14 @@ RegionFxLine::enable_autoation ()
|
|||||||
void
|
void
|
||||||
RegionFxLine::end_drag (bool with_push, uint32_t final_index)
|
RegionFxLine::end_drag (bool with_push, uint32_t final_index)
|
||||||
{
|
{
|
||||||
enable_autoation ();
|
enable_automation ();
|
||||||
AutomationLine::end_drag (with_push, final_index);
|
AutomationLine::end_drag (with_push, final_index);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
RegionFxLine::end_draw_merge ()
|
RegionFxLine::end_draw_merge ()
|
||||||
{
|
{
|
||||||
enable_autoation ();
|
enable_automation ();
|
||||||
AutomationLine::end_draw_merge ();
|
AutomationLine::end_draw_merge ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ public:
|
|||||||
void end_drag (bool with_push, uint32_t final_index);
|
void end_drag (bool with_push, uint32_t final_index);
|
||||||
void end_draw_merge ();
|
void end_draw_merge ();
|
||||||
|
|
||||||
virtual void enable_autoation ();
|
virtual void enable_automation ();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void init ();
|
void init ();
|
||||||
|
@ -117,12 +117,12 @@ AudioRegionGainLine::end_drag (bool with_push, uint32_t final_index)
|
|||||||
void
|
void
|
||||||
AudioRegionGainLine::end_draw_merge ()
|
AudioRegionGainLine::end_draw_merge ()
|
||||||
{
|
{
|
||||||
enable_autoation ();
|
enable_automation ();
|
||||||
RegionFxLine::end_draw_merge ();
|
RegionFxLine::end_draw_merge ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
AudioRegionGainLine::enable_autoation ()
|
AudioRegionGainLine::enable_automation ()
|
||||||
{
|
{
|
||||||
if (!arv.audio_region()->envelope_active()) {
|
if (!arv.audio_region()->envelope_active()) {
|
||||||
XMLNode& before = arv.audio_region()->get_state();
|
XMLNode& before = arv.audio_region()->get_state();
|
||||||
|
@ -46,7 +46,7 @@ public:
|
|||||||
void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode*);
|
void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode*);
|
||||||
void end_drag (bool with_push, uint32_t final_index);
|
void end_drag (bool with_push, uint32_t final_index);
|
||||||
void end_draw_merge ();
|
void end_draw_merge ();
|
||||||
void enable_autoation ();
|
void enable_automation ();
|
||||||
void remove_point (ControlPoint&);
|
void remove_point (ControlPoint&);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user