refs #189, fixed CPqString::getMetaTypeId()

This commit is contained in:
Klaus Basan
2014-03-26 17:54:41 +01:00
parent d0fd46ac7d
commit 23e54e383e
2 changed files with 9 additions and 4 deletions

View File

@@ -23,6 +23,14 @@ namespace BlackMisc
return this->CValueObject::isA(metaTypeId);
}
/*
* Meta id
*/
int CPqString::getMetaTypeId() const
{
return qMetaTypeId<CPqString>();
}
/*
* Compare
*/

View File

@@ -60,10 +60,7 @@ namespace BlackMisc
}
//! \copydoc CValueObject::getMetaTypeId
int getMetaTypeId() const
{
return qMetaTypeId<CPqString>();
}
int getMetaTypeId() const override;
//! \copydoc CValueObject::getValueHash
virtual uint getValueHash() const override;