diff --git a/gtk2_ardour/port_group.cc b/gtk2_ardour/port_group.cc index d0c56d02a4..05bd3153b7 100644 --- a/gtk2_ardour/port_group.cc +++ b/gtk2_ardour/port_group.cc @@ -130,7 +130,7 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs) { clear (); - boost::shared_ptr buss (new PortGroup (_("Buss"))); + boost::shared_ptr bus (new PortGroup (_("Bus"))); boost::shared_ptr track (new PortGroup (_("Track"))); boost::shared_ptr system (new PortGroup (_("System"))); boost::shared_ptr other (new PortGroup (_("Other"))); @@ -174,7 +174,7 @@ PortGroupList::gather (ARDOUR::Session& session, bool inputs) if (boost::dynamic_pointer_cast (*i)) { g = track; } else if (!boost::dynamic_pointer_cast(*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);