minor UI adjustments

This commit is contained in:
Klaus Basan
2020-01-22 19:44:43 +01:00
parent f9bc5ceec4
commit 2704d5e542
2 changed files with 3 additions and 3 deletions

View File

@@ -121,14 +121,14 @@ namespace BlackGui
QString CColumns::propertyIndexToColumnName(const CPropertyIndex &propertyIndex, bool i18n) const
{
const int column = this->propertyIndexToColumn(propertyIndex);
Q_UNUSED(i18n); // not implemented
Q_UNUSED(i18n) // not implemented
return m_columns.at(column).getColumnName();
}
QString CColumns::columnToName(int column, bool i18n) const
{
Q_ASSERT(isValidColumn(column));
Q_UNUSED(i18n); // not implemented
Q_UNUSED(i18n) // not implemented
return m_columns.at(column).getColumnName();
}