mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 14:04:23 +00:00
parent
8c75fdcb4c
commit
19bb6f5fe0
@ -59,7 +59,7 @@
|
||||
|
||||
Preferences *Preferences::m_instance = 0;
|
||||
|
||||
Preferences::Preferences() {}
|
||||
Preferences::Preferences() = default;
|
||||
|
||||
Preferences *Preferences::instance()
|
||||
{
|
||||
|
@ -36,10 +36,8 @@ typedef QSet<QString> QStringSet;
|
||||
|
||||
namespace BitTorrent
|
||||
{
|
||||
|
||||
class TorrentHandle;
|
||||
class TorrentState;
|
||||
|
||||
}
|
||||
|
||||
class TorrentFilter
|
||||
|
@ -43,7 +43,7 @@ GuiIconProvider::GuiIconProvider(QObject *parent)
|
||||
connect(Preferences::instance(), SIGNAL(changed()), SLOT(configure()));
|
||||
}
|
||||
|
||||
GuiIconProvider::~GuiIconProvider() {}
|
||||
GuiIconProvider::~GuiIconProvider() = default;
|
||||
|
||||
void GuiIconProvider::initInstance()
|
||||
{
|
||||
@ -138,7 +138,6 @@ QString GuiIconProvider::getIconPath(const QString &iconId)
|
||||
return IconProvider::getIconPath(iconId);
|
||||
}
|
||||
|
||||
|
||||
void GuiIconProvider::configure()
|
||||
{
|
||||
#if (defined(Q_OS_UNIX) && !defined(Q_OS_MAC))
|
||||
|
@ -312,8 +312,7 @@ OptionsDialog::OptionsDialog(QWidget *parent)
|
||||
connect(m_ui->comboRatioLimitAct, qComboBoxCurrentIndexChanged, this, &ThisType::enableApplyButton);
|
||||
connect(m_ui->checkMaxSeedingMinutes, &QAbstractButton::toggled, this, &ThisType::enableApplyButton);
|
||||
connect(m_ui->checkMaxSeedingMinutes, &QAbstractButton::toggled, this, &ThisType::toggleComboRatioLimitAct);
|
||||
connect(m_ui->spinMaxSeedingMinutes, static_cast<void (QSpinBox::*)(int)>(&QSpinBox::valueChanged),
|
||||
this, &ThisType::enableApplyButton);
|
||||
connect(m_ui->spinMaxSeedingMinutes, qSpinBoxValueChanged, this, &ThisType::enableApplyButton);
|
||||
// Proxy tab
|
||||
connect(m_ui->comboProxyType, qComboBoxCurrentIndexChanged, this, &ThisType::enableApplyButton);
|
||||
connect(m_ui->textProxyIP, &QLineEdit::textChanged, this, &ThisType::enableApplyButton);
|
||||
|
Loading…
x
Reference in New Issue
Block a user