mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
Fix argument name differ in definition & declaration
This commit is contained in:
parent
3739bcc270
commit
42c17ea5ce
@ -178,11 +178,11 @@ QString Application::fileLoggerPath() const
|
|||||||
QVariant(specialFolderLocation(SpecialFolder::Data) + LOG_FOLDER)).toString();
|
QVariant(specialFolderLocation(SpecialFolder::Data) + LOG_FOLDER)).toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Application::setFileLoggerPath(const QString &value)
|
void Application::setFileLoggerPath(const QString &path)
|
||||||
{
|
{
|
||||||
if (m_fileLogger)
|
if (m_fileLogger)
|
||||||
m_fileLogger->changePath(value);
|
m_fileLogger->changePath(path);
|
||||||
settings()->storeValue(KEY_FILELOGGER_PATH, value);
|
settings()->storeValue(KEY_FILELOGGER_PATH, path);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Application::isFileLoggerBackup() const
|
bool Application::isFileLoggerBackup() const
|
||||||
|
@ -316,7 +316,7 @@ namespace BitTorrent
|
|||||||
bool isTrackerFilteringEnabled() const;
|
bool isTrackerFilteringEnabled() const;
|
||||||
void setTrackerFilteringEnabled(bool enabled);
|
void setTrackerFilteringEnabled(bool enabled);
|
||||||
QStringList bannedIPs() const;
|
QStringList bannedIPs() const;
|
||||||
void setBannedIPs(const QStringList &list);
|
void setBannedIPs(const QStringList &newList);
|
||||||
|
|
||||||
void startUpTorrents();
|
void startUpTorrents();
|
||||||
TorrentHandle *findTorrent(const InfoHash &hash) const;
|
TorrentHandle *findTorrent(const InfoHash &hash) const;
|
||||||
|
@ -62,7 +62,7 @@ namespace Net
|
|||||||
Smtp(QObject *parent = 0);
|
Smtp(QObject *parent = 0);
|
||||||
~Smtp();
|
~Smtp();
|
||||||
|
|
||||||
void sendMail(const QString &m_from, const QString &to, const QString &subject, const QString &body);
|
void sendMail(const QString &from, const QString &to, const QString &subject, const QString &body);
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void readyRead();
|
void readyRead();
|
||||||
|
@ -430,9 +430,9 @@ QStringList AutoDownloadRule::feedURLs() const
|
|||||||
return m_dataPtr->feedURLs;
|
return m_dataPtr->feedURLs;
|
||||||
}
|
}
|
||||||
|
|
||||||
void AutoDownloadRule::setFeedURLs(const QStringList &rssFeeds)
|
void AutoDownloadRule::setFeedURLs(const QStringList &urls)
|
||||||
{
|
{
|
||||||
m_dataPtr->feedURLs = rssFeeds;
|
m_dataPtr->feedURLs = urls;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString AutoDownloadRule::name() const
|
QString AutoDownloadRule::name() const
|
||||||
|
@ -59,7 +59,7 @@ namespace RSS
|
|||||||
QString mustNotContain() const;
|
QString mustNotContain() const;
|
||||||
void setMustNotContain(const QString &tokens);
|
void setMustNotContain(const QString &tokens);
|
||||||
QStringList feedURLs() const;
|
QStringList feedURLs() const;
|
||||||
void setFeedURLs(const QStringList &feedURLs);
|
void setFeedURLs(const QStringList &urls);
|
||||||
int ignoreDays() const;
|
int ignoreDays() const;
|
||||||
void setIgnoreDays(int d);
|
void setIgnoreDays(int d);
|
||||||
QDateTime lastMatch() const;
|
QDateTime lastMatch() const;
|
||||||
@ -74,7 +74,7 @@ namespace RSS
|
|||||||
TriStateBool addPaused() const;
|
TriStateBool addPaused() const;
|
||||||
void setAddPaused(const TriStateBool &addPaused);
|
void setAddPaused(const TriStateBool &addPaused);
|
||||||
QString assignedCategory() const;
|
QString assignedCategory() const;
|
||||||
void setCategory(const QString &assignedCategory);
|
void setCategory(const QString &category);
|
||||||
|
|
||||||
bool matches(const QString &articleTitle) const;
|
bool matches(const QString &articleTitle) const;
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ public:
|
|||||||
ICOHandler();
|
ICOHandler();
|
||||||
|
|
||||||
bool canRead() const;
|
bool canRead() const;
|
||||||
bool read(QImage *image);
|
bool read(QImage *outImage);
|
||||||
bool write(const QImage &image);
|
bool write(const QImage &image);
|
||||||
|
|
||||||
QByteArray name() const;
|
QByteArray name() const;
|
||||||
|
@ -199,7 +199,7 @@ private:
|
|||||||
void dragEnterEvent(QDragEnterEvent *event) override;
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
||||||
void closeEvent(QCloseEvent *) override;
|
void closeEvent(QCloseEvent *) override;
|
||||||
void showEvent(QShowEvent *) override;
|
void showEvent(QShowEvent *) override;
|
||||||
bool event(QEvent *event) override;
|
bool event(QEvent *e) override;
|
||||||
void displayRSSTab(bool enable);
|
void displayRSSTab(bool enable);
|
||||||
void displaySearchTab(bool enable);
|
void displaySearchTab(bool enable);
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ public slots:
|
|||||||
void showConnectionTab();
|
void showConnectionTab();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void enableProxy(int comboIndex);
|
void enableProxy(int index);
|
||||||
void on_buttonBox_accepted();
|
void on_buttonBox_accepted();
|
||||||
void closeEvent(QCloseEvent *e);
|
void closeEvent(QCloseEvent *e);
|
||||||
void on_buttonBox_rejected();
|
void on_buttonBox_rejected();
|
||||||
@ -107,7 +107,7 @@ private slots:
|
|||||||
void on_btnWebUiCrt_clicked();
|
void on_btnWebUiCrt_clicked();
|
||||||
void on_btnWebUiKey_clicked();
|
void on_btnWebUiKey_clicked();
|
||||||
void on_registerDNSBtn_clicked();
|
void on_registerDNSBtn_clicked();
|
||||||
void setLocale(const QString &locale);
|
void setLocale(const QString &localeStr);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Methods
|
// Methods
|
||||||
|
@ -40,9 +40,9 @@ SearchSortModel::SearchSortModel(QObject *parent)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchSortModel::enableNameFilter(bool enable)
|
void SearchSortModel::enableNameFilter(bool enabled)
|
||||||
{
|
{
|
||||||
m_isNameFilterEnabled = enable;
|
m_isNameFilterEnabled = enabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SearchSortModel::setNameFilter(const QString &searchTerm)
|
void SearchSortModel::setNameFilter(const QString &searchTerm)
|
||||||
|
@ -111,7 +111,7 @@ public slots:
|
|||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void handleFavicoDownload(const QString &url, const QString &filePath);
|
void handleFavicoDownload(const QString &url, const QString &filePath);
|
||||||
void handleFavicoFailure(const QString &url, const QString &reason);
|
void handleFavicoFailure(const QString &url, const QString &error);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// These 4 methods are virtual slots in the base class.
|
// These 4 methods are virtual slots in the base class.
|
||||||
|
Loading…
Reference in New Issue
Block a user