Fix null ptr for Application::GetInstance().

This commit is contained in:
Gunnar Beutner 2013-09-09 14:09:33 +02:00
parent 98e20f6425
commit a14e72c292
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ char **Application::m_ArgV;
/**
* Constructor for the Application class.
*/
void Application::Start(void)
void Application::OnConfigLoaded(void)
{
DynamicObject::Start();

View File

@ -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;