mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
committed by
GitHub
parent
7d97905716
commit
a2121f2483
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* Bittorrent Client using Qt and libtorrent.
|
||||
* Copyright (C) 2017 Vladimir Golovnev <glassez@yandex.ru>
|
||||
* Copyright (C) 2017-2022 Vladimir Golovnev <glassez@yandex.ru>
|
||||
* Copyright (C) 2010 Christophe Dumez <chris@qbittorrent.org>
|
||||
* Copyright (C) 2010 Arnaud Demaiziere <arnaud@qbittorrent.org>
|
||||
*
|
||||
@@ -39,7 +39,7 @@ namespace RSS
|
||||
{
|
||||
class Feed;
|
||||
|
||||
class Article : public QObject
|
||||
class Article final : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_DISABLE_COPY_MOVE(Article)
|
||||
@@ -47,7 +47,6 @@ namespace RSS
|
||||
friend class Feed;
|
||||
|
||||
Article(Feed *feed, const QVariantHash &varHash);
|
||||
Article(Feed *feed, const QJsonObject &jsonObj);
|
||||
|
||||
public:
|
||||
static const QString KeyId;
|
||||
@@ -72,8 +71,6 @@ namespace RSS
|
||||
|
||||
void markAsRead();
|
||||
|
||||
QJsonObject toJsonObject() const;
|
||||
|
||||
static bool articleDateRecentThan(const Article *article, const QDateTime &date);
|
||||
|
||||
signals:
|
||||
|
||||
Reference in New Issue
Block a user