mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-05 07:02:31 -06:00
Add const to a few pointer arguments
This commit is contained in:
@@ -110,14 +110,14 @@ namespace RSS
|
||||
void process();
|
||||
void handleTorrentDownloadFinished(const QString &url);
|
||||
void handleTorrentDownloadFailed(const QString &url);
|
||||
void handleNewArticle(Article *article);
|
||||
void handleNewArticle(const Article *article);
|
||||
|
||||
private:
|
||||
void timerEvent(QTimerEvent *event) override;
|
||||
void setRule_impl(const AutoDownloadRule &rule);
|
||||
void resetProcessingQueue();
|
||||
void startProcessing();
|
||||
void addJobForArticle(Article *article);
|
||||
void addJobForArticle(const Article *article);
|
||||
void processJob(const QSharedPointer<ProcessingJob> &job);
|
||||
void load();
|
||||
void loadRules(const QByteArray &data);
|
||||
|
||||
Reference in New Issue
Block a user