diff options
author | dada513 <dada513@protonmail.com> | 2022-02-10 13:57:18 +0100 |
---|---|---|
committer | dada513 <dada513@protonmail.com> | 2022-02-10 13:57:18 +0100 |
commit | 13d41bde7fd6cb7119395a1cc829174da5872b60 (patch) | |
tree | 02d36e67b6c3ce97db1980fb02622ff28413db91 /launcher/news/NewsEntry.h | |
parent | d42d6fe25a601136103bea9796167de86fd49cb6 (diff) | |
download | PrismLauncher-13d41bde7fd6cb7119395a1cc829174da5872b60.tar.gz PrismLauncher-13d41bde7fd6cb7119395a1cc829174da5872b60.tar.bz2 PrismLauncher-13d41bde7fd6cb7119395a1cc829174da5872b60.zip |
remove unused parsing of dates (bloat)
Diffstat (limited to 'launcher/news/NewsEntry.h')
-rw-r--r-- | launcher/news/NewsEntry.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/launcher/news/NewsEntry.h b/launcher/news/NewsEntry.h index 0dbc70a5..1fe95623 100644 --- a/launcher/news/NewsEntry.h +++ b/launcher/news/NewsEntry.h @@ -18,8 +18,6 @@ #include <QObject> #include <QString> #include <QDomElement> -#include <QDateTime> - #include <memory> class NewsEntry : public QObject @@ -36,7 +34,7 @@ public: * Constructs a new news entry. * Note that content may contain HTML. */ - NewsEntry(const QString& title, const QString& content, const QString& link, const QString& author, const QDateTime& pubDate, QObject* parent=0); + NewsEntry(const QString& title, const QString& content, const QString& link, QObject* parent=0); /*! * Attempts to load information from the given XML element into the given news entry pointer. @@ -53,12 +51,6 @@ public: //! URL to the post. QString link; - - //! The post's author. - QString author; - - //! The date and time that this post was published. - QDateTime pubDate; }; typedef std::shared_ptr<NewsEntry> NewsEntryPtr; |