remove unused variables and fix initial datetime barrier values

This commit is contained in:
Martin Rotter 2023-07-31 21:12:45 +02:00
parent 15ed8a7f5f
commit c364c49dd4
2 changed files with 8 additions and 7 deletions

View File

@ -20,9 +20,9 @@
Feed::Feed(RootItem* parent)
: RootItem(parent), m_source(QString()), m_status(Status::Normal), m_statusString(QString()),
m_autoUpdateType(AutoUpdateType::DefaultAutoUpdate), m_autoUpdateInterval(DEFAULT_AUTO_UPDATE_INTERVAL),
m_lastUpdated(QDateTime::currentDateTimeUtc()), m_isSwitchedOff(false), m_isQuiet(false), m_isRtl(false),
m_addAnyDatetimeArticles(false), m_avoidOldArticles(false), m_openArticlesDirectly(false),
m_datetimeToAvoid(QDateTime::currentDateTime()), m_messageFilters(QList<QPointer<MessageFilter>>()) {
m_lastUpdated(QDateTime::currentDateTimeUtc()), m_isSwitchedOff(false), m_isQuiet(false),
m_openArticlesDirectly(false), m_isRtl(false), m_addAnyDatetimeArticles(false), m_datetimeToAvoid(QDateTime()),
m_messageFilters(QList<QPointer<MessageFilter>>()) {
setKind(RootItem::Kind::Feed);
}
@ -277,7 +277,8 @@ QString Feed::getAutoUpdateStatusDescription() const {
tr("uses global settings (%n minute(s) to next auto-fetch of articles)", nullptr, int(secs_to_next / 60.0));
}
else {
auto_update_string = tr("uses global settings, but global auto-fetching of articles is disabled");
auto_update_string = tr("uses global settings, but global auto-fetching "
"of articles is disabled");
}
break;
@ -287,7 +288,8 @@ QString Feed::getAutoUpdateStatusDescription() const {
int secs_to_next = QDateTime::currentDateTimeUtc().secsTo(lastUpdated().addSecs(autoUpdateInterval()));
//: Describes feed auto-update status.
auto_update_string = tr("uses specific settings (%n minute(s) to next auto-fetching of new articles)",
auto_update_string = tr("uses specific settings (%n minute(s) to next "
"auto-fetching of new articles)",
nullptr,
int(secs_to_next / 60.0));
break;

View File

@ -111,8 +111,7 @@ class Feed : public RootItem {
bool m_openArticlesDirectly;
bool m_isRtl;
bool m_addAnyDatetimeArticles;
bool m_avoidOldArticles;
bool m_avoidOldArticlesEnabled;
QDateTime m_datetimeToAvoid;
int m_totalCount{};
int m_unreadCount{};