Ref T77, prefix for getDbKeyAsStringInParentheses

This commit is contained in:
Klaus Basan
2017-05-08 02:57:02 +02:00
parent ba85e3851b
commit afbb87298f
7 changed files with 11 additions and 11 deletions

View File

@@ -53,7 +53,7 @@ namespace BlackMisc
QString s = this->m_realname;
if (this->hasValidDbKey())
{
s.append(" ").append(this->getDbKeyAsStringInParentheses());
s.append(this->getDbKeyAsStringInParentheses(" "));
}
return s;
}

View File

@@ -24,7 +24,7 @@ namespace BlackMisc
Q_UNUSED(i18n);
return "Role: " + m_name +
" description: " + m_description +
" " + this->getDbKeyAsStringInParentheses();
this->getDbKeyAsStringInParentheses(" ");
}
CVariant CRole::propertyByIndex(const CPropertyIndex &index) const