refs #192, Doxygen and other cosmetic changes

This commit is contained in:
Klaus Basan
2014-03-26 18:26:10 +01:00
parent 9aebf05e68
commit a724f7ee91
13 changed files with 212 additions and 697 deletions

View File

@@ -19,7 +19,7 @@ namespace BlackMisc
}
if (this->hasValidCallsign())
{
s.append(this->getCallsign().getStringAsSet());
s.append(' ').append(this->getCallsign().getStringAsSet());
}
return s;
}
@@ -38,7 +38,6 @@ namespace BlackMisc
bool CUser::isA(int metaTypeId) const
{
if (metaTypeId == qMetaTypeId<CUser>()) { return true; }
return this->CValueObject::isA(metaTypeId);
}
@@ -48,7 +47,6 @@ namespace BlackMisc
int CUser::compareImpl(const CValueObject &otherBase) const
{
const auto &other = static_cast<const CUser &>(otherBase);
return compare(TupleConverter<CUser>::toTuple(*this), TupleConverter<CUser>::toTuple(other));
}