NO-OP: clarify variable name (1/2)
This commit is contained in:
parent
f2a4ec3776
commit
670e1f9025
@ -738,7 +738,7 @@ public:
|
||||
PresentationInfo::order_t order,
|
||||
TrackMode mode = Normal,
|
||||
bool input_auto_connect = true,
|
||||
bool with_triggers = false
|
||||
bool trigger_visibility = false
|
||||
);
|
||||
|
||||
std::list<boost::shared_ptr<MidiTrack> > new_midi_track (
|
||||
@ -749,7 +749,7 @@ public:
|
||||
PresentationInfo::order_t,
|
||||
TrackMode mode,
|
||||
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);
|
||||
|
@ -2419,7 +2419,7 @@ Session::new_midi_track (const ChanCount& input, const ChanCount& output, bool s
|
||||
RouteGroup* route_group, uint32_t how_many,
|
||||
string name_template, PresentationInfo::order_t order,
|
||||
TrackMode mode, bool input_auto_connect,
|
||||
bool with_triggers)
|
||||
bool trigger_visibility)
|
||||
{
|
||||
string track_name;
|
||||
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);
|
||||
}
|
||||
|
||||
track->presentation_info ().set_trigger_track (with_triggers);
|
||||
track->presentation_info ().set_trigger_track (trigger_visibility);
|
||||
|
||||
new_routes.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,
|
||||
uint32_t how_many, string name_template, PresentationInfo::order_t order,
|
||||
TrackMode mode, bool input_auto_connect,
|
||||
bool with_triggers)
|
||||
bool trigger_visibility)
|
||||
{
|
||||
string track_name;
|
||||
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);
|
||||
}
|
||||
|
||||
track->presentation_info ().set_trigger_track (with_triggers);
|
||||
track->presentation_info ().set_trigger_track (trigger_visibility);
|
||||
|
||||
new_routes.push_back (track);
|
||||
ret.push_back (track);
|
||||
|
Loading…
Reference in New Issue
Block a user