mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-02 13:48:05 -06:00
Fix argument name differ in definition & declaration
This commit is contained in:
@@ -316,7 +316,7 @@ namespace BitTorrent
|
||||
bool isTrackerFilteringEnabled() const;
|
||||
void setTrackerFilteringEnabled(bool enabled);
|
||||
QStringList bannedIPs() const;
|
||||
void setBannedIPs(const QStringList &list);
|
||||
void setBannedIPs(const QStringList &newList);
|
||||
|
||||
void startUpTorrents();
|
||||
TorrentHandle *findTorrent(const InfoHash &hash) const;
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace Net
|
||||
Smtp(QObject *parent = 0);
|
||||
~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:
|
||||
void readyRead();
|
||||
|
||||
@@ -430,9 +430,9 @@ QStringList AutoDownloadRule::feedURLs() const
|
||||
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
|
||||
|
||||
@@ -59,7 +59,7 @@ namespace RSS
|
||||
QString mustNotContain() const;
|
||||
void setMustNotContain(const QString &tokens);
|
||||
QStringList feedURLs() const;
|
||||
void setFeedURLs(const QStringList &feedURLs);
|
||||
void setFeedURLs(const QStringList &urls);
|
||||
int ignoreDays() const;
|
||||
void setIgnoreDays(int d);
|
||||
QDateTime lastMatch() const;
|
||||
@@ -74,7 +74,7 @@ namespace RSS
|
||||
TriStateBool addPaused() const;
|
||||
void setAddPaused(const TriStateBool &addPaused);
|
||||
QString assignedCategory() const;
|
||||
void setCategory(const QString &assignedCategory);
|
||||
void setCategory(const QString &category);
|
||||
|
||||
bool matches(const QString &articleTitle) const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user