mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
Utility functions to sort text messages by timestamp (ascending/descending)
* compare function for text message * resort function * text message edit can display HTML text messages with ascending/descending timestamp * made CTextMessageListModel -> CListModelTimestampObject
This commit is contained in:
committed by
Mat Sutcliffe
parent
25eb13a83f
commit
e12dc3a73a
@@ -502,6 +502,13 @@ namespace BlackGui
|
||||
this->sort(this->getSortColumn(), this->getSortOrder());
|
||||
}
|
||||
|
||||
template<typename T, bool UseCompare>
|
||||
void CListModelBase<T, UseCompare>::resort()
|
||||
{
|
||||
// sort the values
|
||||
this->updateContainerMaybeAsync(m_container, true);
|
||||
}
|
||||
|
||||
template <typename T, bool UseCompare>
|
||||
void CListModelBase<T, UseCompare>::sort(int column, Qt::SortOrder order)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user