summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorHans Baier <hansfbaier@googlemail.com>2009-02-03 06:22:50 +0000
committerHans Baier <hansfbaier@googlemail.com>2009-02-03 06:22:50 +0000
commit5e3cced3e776bca1444c6b5647f89c6fd0d65e00 (patch)
tree6abb33ae0c864a70323f0afe32afb7c94e1df55a /gtk2_ardour
parentd06d697e41e2089ec4cce35ea17b4995797deab7 (diff)
* typo buss -> bus
git-svn-id: svn://localhost/ardour2/branches/3.0@4485 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/port_group.cc8
1 files changed, 4 insertions, 4 deletions
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<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);