Browse Source

Folder scanning settings are now properly saved

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
c8d0f5a104
  1. 2
      src/options_imp.cpp
  2. 2
      src/transferlistwidget.cpp
  3. 2
      src/transferlistwidget.h

2
src/options_imp.cpp

@ -202,6 +202,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ @@ -202,6 +202,8 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
connect(actionTorrentDlOnDblClBox, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton()));
connect(actionTorrentFnOnDblClBox, SIGNAL(currentIndexChanged(int)), this, SLOT(enableApplyButton()));
connect(checkTempFolder, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton()));
connect(addScanFolderButton, SIGNAL(clicked()), this, SLOT(enableApplyButton()));
connect(removeScanFolderButton, SIGNAL(clicked()), this, SLOT(enableApplyButton()));
// Connection tab
connect(spinPort, SIGNAL(valueChanged(QString)), this, SLOT(enableApplyButton()));
connect(checkUPnP, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton()));

2
src/transferlistwidget.cpp

@ -156,7 +156,7 @@ TransferListWidget::~TransferListWidget() { @@ -156,7 +156,7 @@ TransferListWidget::~TransferListWidget() {
delete listDelegate;
}
void TransferListWidget::addTorrent(QTorrentHandle& h) {
void TransferListWidget::addTorrent(const QTorrentHandle& h) {
if(!h.is_valid()) return;
// Check that the torrent is not already there
if(getRowFromHash(h.hash()) >= 0) return;

2
src/transferlistwidget.h

@ -95,7 +95,7 @@ protected slots: @@ -95,7 +95,7 @@ protected slots:
public slots:
void refreshList();
void addTorrent(QTorrentHandle& h);
void addTorrent(const QTorrentHandle& h);
void pauseTorrent(QTorrentHandle &h);
void setFinished(QTorrentHandle &h);
void setSelectionLabel(QString label);

Loading…
Cancel
Save