From 273526b414f1529dd5ed39dbf31c7729860ed81a Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 8 Mar 2009 16:14:03 +0000 Subject: [PATCH] - Fix signal/slot --- 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 d18251859..b382cb6bc 100644 --- a/src/options_imp.cpp +++ b/src/options_imp.cpp @@ -133,7 +133,7 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ connect(checkScanDir, SIGNAL(stateChanged(int)), this, SLOT(enableDirScan(int))); connect(actionTorrentDlOnDblClBox, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton())); connect(actionTorrentFnOnDblClBox, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton())); - connect(checkTempFolder, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton())); + connect(checkTempFolder, SIGNAL(stateChanged(int)), this, SLOT(enableApplyButton())); // Connection tab connect(checkUploadLimit, SIGNAL(stateChanged(int)), this, SLOT(enableUploadLimit(int))); connect(checkDownloadLimit, SIGNAL(stateChanged(int)), this, SLOT(enableDownloadLimit(int)));