mirror of https://github.com/Icinga/icinga2.git
Make the 'deprecated' keyword work for all field types
This commit is contained in:
parent
a21ffd6fe4
commit
cc5bc6c872
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue