mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
trigger_ui: disambiguate set_triggerbox() from set_trigger()
This commit is contained in:
parent
81a011b786
commit
1dc756142c
4 changed files with 4 additions and 4 deletions
|
|
@ -2135,7 +2135,7 @@ MixerStrip::hide_master_spacer (bool yn)
|
||||||
void
|
void
|
||||||
MixerStrip::set_trigger_display (boost::shared_ptr<TriggerBox> tb)
|
MixerStrip::set_trigger_display (boost::shared_ptr<TriggerBox> tb)
|
||||||
{
|
{
|
||||||
_tmaster->set_trigger (tb);
|
_tmaster->set_triggerbox (tb);
|
||||||
trigger_display.set_triggerbox (tb.get());
|
trigger_display.set_triggerbox (tb.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -231,7 +231,7 @@ TriggerMaster::~TriggerMaster ()
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
TriggerMaster::set_trigger (boost::shared_ptr<ARDOUR::TriggerBox> t)
|
TriggerMaster::set_triggerbox (boost::shared_ptr<ARDOUR::TriggerBox> t)
|
||||||
{
|
{
|
||||||
_triggerbox = t;
|
_triggerbox = t;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -67,7 +67,7 @@ public:
|
||||||
TriggerMaster (ArdourCanvas::Item* canvas);
|
TriggerMaster (ArdourCanvas::Item* canvas);
|
||||||
~TriggerMaster ();
|
~TriggerMaster ();
|
||||||
|
|
||||||
void set_trigger (boost::shared_ptr<ARDOUR::TriggerBox>);
|
void set_triggerbox (boost::shared_ptr<ARDOUR::TriggerBox>);
|
||||||
|
|
||||||
void render (ArdourCanvas::Rect const&, Cairo::RefPtr<Cairo::Context>) const;
|
void render (ArdourCanvas::Rect const&, Cairo::RefPtr<Cairo::Context>) const;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -190,7 +190,7 @@ TriggerStrip::set_route (boost::shared_ptr<Route> rt)
|
||||||
{
|
{
|
||||||
RouteUI::set_route (rt);
|
RouteUI::set_route (rt);
|
||||||
|
|
||||||
_tmaster->set_trigger(_route->triggerbox ());
|
_tmaster->set_triggerbox(_route->triggerbox ());
|
||||||
|
|
||||||
_processor_box.set_route (rt);
|
_processor_box.set_route (rt);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue