aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxapp.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-10-19 21:01:53 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-10-19 21:01:53 -0400
commitf1ad9796741daa8368f4885bbce360522df24367 (patch)
tree48416337fd661d8a12e90d2d7d8fb6dbbc6aa83b /gui/wxapp.hpp
parent241a089c39c77345e8e0a0c8a04301ba2271e432 (diff)
gui improvements; code templates
Diffstat (limited to 'gui/wxapp.hpp')
-rw-r--r--gui/wxapp.hpp9
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_