refs #893, extra lines in variant map (for debugging)

This commit is contained in:
Klaus Basan
2017-03-01 01:00:57 +01:00
committed by Mathew Sutcliffe
parent 5f5909c5b6
commit 6d39be2657

View File

@@ -92,9 +92,14 @@ namespace BlackMisc
void baseSetPropertyByIndex(T *base, const CVariant &var, const CPropertyIndex &index) { base->setPropertyByIndex(index, var); }
CVariant basePropertyByIndex(const void *, const CPropertyIndex &index) const
{ qFatal("%s", qPrintable("Property by index not found, index: " + index.toQString())); return {}; }
{
qFatal("%s", qPrintable("Property by index not found, index: " + index.toQString())); return {};
}
void baseSetPropertyByIndex(void *, const CVariant &, const CPropertyIndex &index)
{ qFatal("%s", qPrintable("Property by index not found (setter), index: " + index.toQString())); }
{
qFatal("%s", qPrintable("Property by index not found (setter), index: " + index.toQString()));
}
};
/*!