Add convenience method QTextFormat::isEmpty()

Change-Id: I30e74de6853908d1fec399131637848e3c2faabe
Reviewed-by: Lars Knoll <lars.knoll@digia.com>
This commit is contained in:
Konstantin Ritt 2014-01-15 22:51:53 +02:00 committed by The Qt Project
parent c5192b300e
commit e52dca3655
2 changed files with 10 additions and 0 deletions

View File

@ -705,6 +705,15 @@ Q_GUI_EXPORT QDataStream &operator>>(QDataStream &stream, QTextFormat &fmt)
InvalidFormat); otherwise returns \c false.
*/
/*!
\fn bool QTextFormat::isEmpty() const
\since 5.3
Returns true if the format does not store any properties; false otherwise.
\sa propertyCount(), properties()
*/
/*!
\fn bool QTextFormat::isCharFormat() const

View File

@ -295,6 +295,7 @@ public:
void merge(const QTextFormat &other);
inline bool isValid() const { return type() != InvalidFormat; }
inline bool isEmpty() const { return propertyCount() == 0; }
int type() const;