mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-19 20:25:29 +08:00
refs #893, extra lines in variant map (for debugging)
This commit is contained in:
committed by
Mathew Sutcliffe
parent
5f5909c5b6
commit
6d39be2657
@@ -92,9 +92,14 @@ namespace BlackMisc
|
|||||||
void baseSetPropertyByIndex(T *base, const CVariant &var, const CPropertyIndex &index) { base->setPropertyByIndex(index, var); }
|
void baseSetPropertyByIndex(T *base, const CVariant &var, const CPropertyIndex &index) { base->setPropertyByIndex(index, var); }
|
||||||
|
|
||||||
CVariant basePropertyByIndex(const void *, const CPropertyIndex &index) const
|
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)
|
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()));
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
|||||||
Reference in New Issue
Block a user