Ref T529, log component allows to set sort order or no order

This commit is contained in:
Klaus Basan
2019-02-04 16:53:34 +01:00
committed by Mat Sutcliffe
parent 3aee73840d
commit e1fccf17d8
2 changed files with 16 additions and 0 deletions

View File

@@ -98,6 +98,16 @@ namespace BlackGui
ui->comp_StatusMessages->setMaxLogMessages(max);
}
void CLogComponent::setNoSorting()
{
ui->comp_StatusMessages->setNoSorting();
}
void CLogComponent::setSorting(const CPropertyIndex &propertyIndex, Qt::SortOrder order)
{
ui->comp_StatusMessages->setSorting(propertyIndex, order);
}
void CLogComponent::clear()
{
ui->tep_StatusPageConsole->clear();