mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 23:47:23 -06:00
Fix argument name differ in definition & declaration
This commit is contained in:
@@ -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