wip
This commit is contained in:
parent
2a7a68e915
commit
a5a28bebc2
|
@ -42,6 +42,8 @@ class QSK_EXPORT QskLabelData
|
|||
void setIcon( const QskIcon& );
|
||||
QskIcon icon() const noexcept;
|
||||
|
||||
bool isEmpty() const;
|
||||
|
||||
QskHashValue hash( QskHashValue ) const;
|
||||
|
||||
private:
|
||||
|
@ -71,6 +73,11 @@ inline bool QskLabelData::operator!=( const QskLabelData& other ) const noexcept
|
|||
return ( !( *this == other ) );
|
||||
}
|
||||
|
||||
inline bool QskLabelData::isEmpty() const
|
||||
{
|
||||
return m_text.isEmpty() && m_icon.isNull();
|
||||
}
|
||||
|
||||
QSK_EXPORT QVector< QskLabelData > qskCreateLabelData( const QStringList& );
|
||||
|
||||
#ifndef QT_NO_DEBUG_STREAM
|
||||
|
|
Loading…
Reference in New Issue