mirror of https://github.com/Icinga/icinga2.git
Fixed incorrect type name.
This commit is contained in:
parent
686191103f
commit
23e7b7aefc
|
@ -425,7 +425,7 @@ set<Service::Ptr> Host::GetParentServices(void) const
|
|||
return parents;
|
||||
}
|
||||
|
||||
Dynamic::Ptr Host::CalculateDynamicMacros(void) const
|
||||
Dictionary::Ptr Host::CalculateDynamicMacros(void) const
|
||||
{
|
||||
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ public:
|
|||
Dictionary::Ptr GetServiceDependencies(void) const;
|
||||
String GetHostCheck(void) const;
|
||||
|
||||
Dynamic::Ptr CalculateDynamicMacros(void) const;
|
||||
Dictionary::Ptr CalculateDynamicMacros(void) const;
|
||||
|
||||
shared_ptr<Service> GetHostCheckService(void) const;
|
||||
set<Host::Ptr> GetParentHosts(void) const;
|
||||
|
|
|
@ -269,7 +269,7 @@ set<Service::Ptr> Service::GetParentServices(void) const
|
|||
return parents;
|
||||
}
|
||||
|
||||
Dynamic::Ptr Service::CalculateDynamicMacros(void) const
|
||||
Dictionary::Ptr Service::CalculateDynamicMacros(void) const
|
||||
{
|
||||
Dictionary::Ptr macros = boost::make_shared<Dictionary>();
|
||||
|
||||
|
|
|
@ -106,7 +106,7 @@ public:
|
|||
Dictionary::Ptr GetGroups(void) const;
|
||||
String GetShortName(void) const;
|
||||
|
||||
Dynamic::Ptr CalculateDynamicMacros(void) const;
|
||||
Dictionary::Ptr CalculateDynamicMacros(void) const;
|
||||
|
||||
set<Host::Ptr> GetParentHosts(void) const;
|
||||
set<Service::Ptr> GetParentServices(void) const;
|
||||
|
|
Loading…
Reference in New Issue