13
0

NO-OP: fix function name spelling

This commit is contained in:
Robin Gareus 2024-08-24 00:24:28 +02:00
parent 66b3ad79c1
commit 09bddcad10
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
5 changed files with 8 additions and 8 deletions

View File

@ -1562,7 +1562,7 @@ AudioRegionView::add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *ev, b
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));

View File

@ -58,7 +58,7 @@ RegionFxLine::get_origin() const
}
void
RegionFxLine::enable_autoation ()
RegionFxLine::enable_automation ()
{
std::shared_ptr<AutomationControl> ac = _ac.lock ();
if (ac) {
@ -69,14 +69,14 @@ RegionFxLine::enable_autoation ()
void
RegionFxLine::end_drag (bool with_push, uint32_t final_index)
{
enable_autoation ();
enable_automation ();
AutomationLine::end_drag (with_push, final_index);
}
void
RegionFxLine::end_draw_merge ()
{
enable_autoation ();
enable_automation ();
AutomationLine::end_draw_merge ();
}

View File

@ -36,7 +36,7 @@ public:
void end_drag (bool with_push, uint32_t final_index);
void end_draw_merge ();
virtual void enable_autoation ();
virtual void enable_automation ();
private:
void init ();

View File

@ -117,12 +117,12 @@ AudioRegionGainLine::end_drag (bool with_push, uint32_t final_index)
void
AudioRegionGainLine::end_draw_merge ()
{
enable_autoation ();
enable_automation ();
RegionFxLine::end_draw_merge ();
}
void
AudioRegionGainLine::enable_autoation ()
AudioRegionGainLine::enable_automation ()
{
if (!arv.audio_region()->envelope_active()) {
XMLNode& before = arv.audio_region()->get_state();

View File

@ -46,7 +46,7 @@ public:
void start_drag_multiple (std::list<ControlPoint*>, float, XMLNode*);
void end_drag (bool with_push, uint32_t final_index);
void end_draw_merge ();
void enable_autoation ();
void enable_automation ();
void remove_point (ControlPoint&);
private: