mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
* typo buss -> bus
git-svn-id: svn://localhost/ardour2/branches/3.0@4485 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
d06d697e41
commit
5e3cced3e7
1 changed files with 4 additions and 4 deletions
|
|
@ -130,7 +130,7 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs)
|
|||
{
|
||||
clear ();
|
||||
|
||||
boost::shared_ptr<PortGroup> buss (new PortGroup (_("Buss")));
|
||||
boost::shared_ptr<PortGroup> bus (new PortGroup (_("Bus")));
|
||||
boost::shared_ptr<PortGroup> track (new PortGroup (_("Track")));
|
||||
boost::shared_ptr<PortGroup> system (new PortGroup (_("System")));
|
||||
boost::shared_ptr<PortGroup> other (new PortGroup (_("Other")));
|
||||
|
|
@ -174,7 +174,7 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs)
|
|||
if (boost::dynamic_pointer_cast<ARDOUR::AudioTrack> (*i)) {
|
||||
g = track;
|
||||
} else if (!boost::dynamic_pointer_cast<ARDOUR::MidiTrack>(*i)) {
|
||||
g = buss;
|
||||
g = bus;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -218,7 +218,7 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs)
|
|||
|
||||
std::string const p = ports[n];
|
||||
|
||||
if (!system->has_port(p) && !buss->has_port(p) && !track->has_port(p) && !other->has_port(p)) {
|
||||
if (!system->has_port(p) && !bus->has_port(p) && !track->has_port(p) && !other->has_port(p)) {
|
||||
|
||||
if (port_has_prefix (p, "system:") ||
|
||||
port_has_prefix (p, "alsa_pcm") ||
|
||||
|
|
@ -236,7 +236,7 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs)
|
|||
}
|
||||
|
||||
add_group (system);
|
||||
add_group (buss);
|
||||
add_group (bus);
|
||||
add_group (track);
|
||||
add_group (other);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue