From 296bd07e52147b94321f1f1145716275f384fd5d Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 20 May 2008 10:38:48 +0000 Subject: [PATCH] - Fixed a broken signal in program preferences --- src/options_imp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options_imp.cpp b/src/options_imp.cpp index e43e45d8a..b0d8bbb8b 100644 --- a/src/options_imp.cpp +++ b/src/options_imp.cpp @@ -164,7 +164,7 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ connect(checkStartPaused, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); connect(checkScanDir, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); connect(textScanDir, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton())); - connect(FolderScanSpin, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); + connect(FolderScanSpin, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton())); // Connection tab connect(spinPortMin, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton())); connect(spinPortMax, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));