Fix: Don't validate templates

refs #7458
This commit is contained in:
Gunnar Beutner 2014-10-28 12:20:20 +01:00
parent cb6a4f1c76
commit 76444027e9
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ ConfigItem::Ptr ConfigItem::GetObject(const String& type, const String& name)
void ConfigItem::ValidateItem(void)
{
if (m_Validated)
if (m_Validated || IsAbstract())
return;
ConfigType::Ptr ctype = ConfigType::GetByName(GetType());