Make the 'deprecated' keyword work for all field types

This commit is contained in:
Gunnar Beutner 2017-10-24 10:18:32 +02:00 committed by Jean Flach
parent a21ffd6fe4
commit cc5bc6c872
1 changed files with 1 additions and 1 deletions

View File

@ -514,7 +514,7 @@ void ClassCompiler::HandleClass(const Klass& klass, const ClassDebugInfo&)
if (field.Type.GetRealType().find("::Ptr") != std::string::npos)
m_Impl << "\t" << "if (" << argName << ")" << std::endl;
else
m_Impl << "\t" << "if (!" << argName << ".IsEmpty())" << std::endl;
m_Impl << "\t" << "if (" << argName << " != GetDefault" << field.GetFriendlyName() << "())" << std::endl;
m_Impl << "\t\t" << "Log(LogWarning, \"" << klass.Name << "\") << \"Attribute '" << field.Name << "' for object '\" << dynamic_cast<ConfigObject *>(this)->GetName() << \"' of type '\" << dynamic_cast<ConfigObject *>(this)->GetReflectionType()->GetName() << \"' is deprecated and should not be used.\";" << std::endl;
}