diff options
Diffstat (limited to 'gui/wxapp.hpp')
-rw-r--r-- | gui/wxapp.hpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gui/wxapp.hpp b/gui/wxapp.hpp index 010e3e0..2133d6a 100644 --- a/gui/wxapp.hpp +++ b/gui/wxapp.hpp @@ -12,11 +12,14 @@ public: virtual bool OnInit() final { wxFont::AddPrivateFont("./Hack-Regular.ttf"); - auto mainFrame = new MainFrame; - mainFrame->Show(true); - SetTopWindow(mainFrame); + m_main_frame = new MainFrame; + m_main_frame->Show(true); + SetTopWindow(m_main_frame); return true; } + +private: + MainFrame *m_main_frame = nullptr; }; #endif // WXAPP_HPP_ |