Issue #77 Remove unused methods

This commit is contained in:
Mat Sutcliffe
2020-10-29 22:43:00 +00:00
parent 4cc1c7e0a9
commit c2ac37f552
8 changed files with 2 additions and 50 deletions

View File

@@ -477,21 +477,6 @@ namespace BlackMisc
}
}
QString CVariant::propertyByIndexAsString(const CPropertyIndex &index, bool i18n) const
{
auto *meta = getValueObjectMetaInfo();
Q_ASSERT(meta);
try
{
return meta->propertyByIndexAsString(data(), index, i18n);
}
catch (const Private::CVariantException &ex)
{
CLogMessage(this).debug() << ex.what();
return {};
}
}
bool CVariant::equalsPropertyByIndex(const CVariant &compareValue, const CPropertyIndex &index) const
{
auto *meta = getValueObjectMetaInfo();