Add convenience method QTextFormat::isEmpty()
Change-Id: I30e74de6853908d1fec399131637848e3c2faabe Reviewed-by: Lars Knoll <lars.knoll@digia.com>
This commit is contained in:
parent
c5192b300e
commit
e52dca3655
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user