aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-04-08 00:52:08 -0700
committerChris Robinson <[email protected]>2016-04-08 00:52:08 -0700
commita8101da95676f2f9541cb3fcdbcf66ddb16e913c (patch)
treeea1dc5065585f3395e81a7c4c44d4b44c254eafd /utils
parentf7efa0aff74d50abd4329a110c452de292f1e1c8 (diff)
Use the correct slot callback for the 6.1 and 7.1 decoder buttons
Diffstat (limited to 'utils')
-rw-r--r--utils/alsoft-config/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/alsoft-config/mainwindow.cpp b/utils/alsoft-config/mainwindow.cpp
index 53e2ffea..4d286367 100644
--- a/utils/alsoft-config/mainwindow.cpp
+++ b/utils/alsoft-config/mainwindow.cpp
@@ -321,9 +321,9 @@ MainWindow::MainWindow(QWidget *parent) :
connect(ui->decoder51RearLineEdit, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
connect(ui->decoder51RearButton, SIGNAL(clicked()), this, SLOT(select51RearDecoderFile()));
connect(ui->decoder61LineEdit, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
- connect(ui->decoder61Button, SIGNAL(clicked()), this, SLOT(select71DecoderFile()));
+ connect(ui->decoder61Button, SIGNAL(clicked()), this, SLOT(select61DecoderFile()));
connect(ui->decoder71LineEdit, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton()));
- connect(ui->decoder71Button, SIGNAL(clicked()), this, SLOT(select61DecoderFile()));
+ connect(ui->decoder71Button, SIGNAL(clicked()), this, SLOT(select71DecoderFile()));
connect(ui->preferredHrtfComboBox, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(enableApplyButton()));
connect(ui->hrtfStateComboBox, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(enableApplyButton()));