Pimcommon
7#include "whatsnewinfo.h"
9WhatsNewInfo::WhatsNewInfo() =
default;
11WhatsNewInfo::~WhatsNewInfo() =
default;
18void WhatsNewInfo::setChanges(
const QStringList &newChanges)
20 mChanges = newChanges;
23QStringList WhatsNewInfo::newFeatures()
const
28void WhatsNewInfo::setNewFeatures(
const QStringList &newNewFeatures)
30 mNewFeatures = newNewFeatures;
33QStringList WhatsNewInfo::bugFixings()
const
38void WhatsNewInfo::setBugFixings(
const QStringList &newBugFixings)
40 mBugFixings = newBugFixings;
43QString WhatsNewInfo::version()
const
48void WhatsNewInfo::setVersion(
const QString &newVersion)
50 mVersion = newVersion;
53QDebug
operator<<(QDebug d,
const WhatsNewInfo &t)
55 d.
space() <<
"version" << t.version();
56 d.
space() <<
"bugFixings" << t.bugFixings();
57 d.
space() <<
"newFeatures" << t.newFeatures();
58 d.
space() <<
"changes" << t.changes();
KTEXTEDITOR_EXPORT QDebug operator<<(QDebug s, const MovingCursor &cursor)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Feb 28 2025 11:49:51 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.