summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorColin Guthrie <cguthrie@mandriva.org>2009-03-16 21:50:54 +0000
committerColin Guthrie <cguthrie@mandriva.org>2009-06-17 08:54:12 +0100
commitca441f4c9d1189d01836b24cc2eea6b8e023ecbb (patch)
treec71e25a3c2fb7f7e4bf24d8802c6d139af8c1e4d /src
parent0667b9d5eab0a6b96f57de1f6825472166901aed (diff)
Remove the 'Default [Out|In]put' option from the combo for now.
It will be restored when it's actually possible to set/clear the default stream restore db
Diffstat (limited to 'src')
-rw-r--r--src/mainwindow.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainwindow.cc b/src/mainwindow.cc
index a25e416..de7aab8 100644
--- a/src/mainwindow.cc
+++ b/src/mainwindow.cc
@@ -186,10 +186,12 @@ void MainWindow::rebuildSinkCombo() {
sinkTree->clear();
sinkTreeIndexes.clear();
+ /*
row = *(sinkTree->append());
idx++;
row[deviceColumns.index] = -1;
row[deviceColumns.name] = "Default Output";
+ */
for (std::map<uint32_t, SinkWidget*>::iterator i = sinkWidgets.begin(); i != sinkWidgets.end(); ++i) {
Gtk::TreeModel::Row row = *(sinkTree->append());
@@ -359,10 +361,13 @@ void MainWindow::rebuildSourceCombo() {
sourceTree->clear();
sourceTreeIndexes.clear();
+
+ /*
row = *(sourceTree->append());
idx++;
row[deviceColumns.index] = -1;
row[deviceColumns.name] = "Default Input";
+ */
for (std::map<uint32_t, SourceWidget*>::iterator i = sourceWidgets.begin(); i != sourceWidgets.end(); ++i) {
Gtk::TreeModel::Row row = *(sourceTree->append());