mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
NO-OP: clarify variable name (1/2)
This commit is contained in:
parent
f2a4ec3776
commit
670e1f9025
2 changed files with 6 additions and 6 deletions
|
|
@ -738,7 +738,7 @@ public:
|
||||||
PresentationInfo::order_t order,
|
PresentationInfo::order_t order,
|
||||||
TrackMode mode = Normal,
|
TrackMode mode = Normal,
|
||||||
bool input_auto_connect = true,
|
bool input_auto_connect = true,
|
||||||
bool with_triggers = false
|
bool trigger_visibility = false
|
||||||
);
|
);
|
||||||
|
|
||||||
std::list<boost::shared_ptr<MidiTrack> > new_midi_track (
|
std::list<boost::shared_ptr<MidiTrack> > new_midi_track (
|
||||||
|
|
@ -749,7 +749,7 @@ public:
|
||||||
PresentationInfo::order_t,
|
PresentationInfo::order_t,
|
||||||
TrackMode mode,
|
TrackMode mode,
|
||||||
bool input_auto_connect,
|
bool input_auto_connect,
|
||||||
bool with_triggers = false
|
bool trigger_visibility = false
|
||||||
);
|
);
|
||||||
|
|
||||||
RouteList new_audio_route (int input_channels, int output_channels, RouteGroup* route_group, uint32_t how_many, std::string name_template, PresentationInfo::Flag, PresentationInfo::order_t);
|
RouteList new_audio_route (int input_channels, int output_channels, RouteGroup* route_group, uint32_t how_many, std::string name_template, PresentationInfo::Flag, PresentationInfo::order_t);
|
||||||
|
|
|
||||||
|
|
@ -2419,7 +2419,7 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, bool s
|
||||||
RouteGroup* route_group, uint32_t how_many,
|
RouteGroup* route_group, uint32_t how_many,
|
||||||
string name_template, PresentationInfo::order_t order,
|
string name_template, PresentationInfo::order_t order,
|
||||||
TrackMode mode, bool input_auto_connect,
|
TrackMode mode, bool input_auto_connect,
|
||||||
bool with_triggers)
|
bool trigger_visibility)
|
||||||
{
|
{
|
||||||
string track_name;
|
string track_name;
|
||||||
uint32_t track_id = 0;
|
uint32_t track_id = 0;
|
||||||
|
|
@ -2468,7 +2468,7 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, bool s
|
||||||
route_group->add (track);
|
route_group->add (track);
|
||||||
}
|
}
|
||||||
|
|
||||||
track->presentation_info ().set_trigger_track (with_triggers);
|
track->presentation_info ().set_trigger_track (trigger_visibility);
|
||||||
|
|
||||||
new_routes.push_back (track);
|
new_routes.push_back (track);
|
||||||
ret.push_back (track);
|
ret.push_back (track);
|
||||||
|
|
@ -2674,7 +2674,7 @@ list< boost::shared_ptr<AudioTrack> >
|
||||||
Session::new_audio_track (int input_channels, int output_channels, RouteGroup* route_group,
|
Session::new_audio_track (int input_channels, int output_channels, RouteGroup* route_group,
|
||||||
uint32_t how_many, string name_template, PresentationInfo::order_t order,
|
uint32_t how_many, string name_template, PresentationInfo::order_t order,
|
||||||
TrackMode mode, bool input_auto_connect,
|
TrackMode mode, bool input_auto_connect,
|
||||||
bool with_triggers)
|
bool trigger_visibility)
|
||||||
{
|
{
|
||||||
string track_name;
|
string track_name;
|
||||||
uint32_t track_id = 0;
|
uint32_t track_id = 0;
|
||||||
|
|
@ -2731,7 +2731,7 @@ Session::new_audio_track (int input_channels, int output_channels, RouteGroup* r
|
||||||
route_group->add (track);
|
route_group->add (track);
|
||||||
}
|
}
|
||||||
|
|
||||||
track->presentation_info ().set_trigger_track (with_triggers);
|
track->presentation_info ().set_trigger_track (trigger_visibility);
|
||||||
|
|
||||||
new_routes.push_back (track);
|
new_routes.push_back (track);
|
||||||
ret.push_back (track);
|
ret.push_back (track);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue