mirror of https://github.com/Icinga/icinga2.git
Fix null ptr for Application::GetInstance().
This commit is contained in:
parent
98e20f6425
commit
a14e72c292
|
@ -51,7 +51,7 @@ char **Application::m_ArgV;
|
|||
/**
|
||||
* Constructor for the Application class.
|
||||
*/
|
||||
void Application::Start(void)
|
||||
void Application::OnConfigLoaded(void)
|
||||
{
|
||||
DynamicObject::Start();
|
||||
|
||||
|
|
|
@ -87,7 +87,7 @@ public:
|
|||
static ThreadPool& GetTP(void);
|
||||
|
||||
protected:
|
||||
virtual void Start(void);
|
||||
virtual void OnConfigLoaded(void);
|
||||
virtual void Stop(void);
|
||||
|
||||
void RunEventLoop(void) const;
|
||||
|
|
Loading…
Reference in New Issue