Rename PdmXmlFieldHandle::childClassKeyword to dataTypeName to reflect that it will contain names for built in types

This commit is contained in:
Gaute Lindkvist
2020-03-04 08:20:29 +01:00
parent 76019e7776
commit 508d8806e6
6 changed files with 14 additions and 14 deletions

View File

@@ -56,9 +56,9 @@ void PdmXmlFieldHandle::disableIO()
/// to PdmObjectHandle derived objects.
/// Returns typeid(DataType).name() if the field is not containing some PdmObjectHandle type
//--------------------------------------------------------------------------------------------------
QString PdmXmlFieldHandle::childClassKeyword() const
QString PdmXmlFieldHandle::dataTypeName() const
{
return m_childClassKeyword;
return m_dataTypeName;
}
//--------------------------------------------------------------------------------------------------