From c8eca7cd7f572b5d1650d61c601646cbc6269ded Mon Sep 17 00:00:00 2001 From: William JCM Date: Fri, 10 Jan 2020 22:47:20 +0100 Subject: [PATCH] Give the app a proper display name. --- main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.cpp b/main.cpp index cc0cf98..f85324c 100644 --- a/main.cpp +++ b/main.cpp @@ -21,6 +21,9 @@ class MyApp: public wxApp { public: bool OnInit() { + SetAppName("wxMASSManager"); + SetAppDisplayName("wxMASSManager"); + EvtMainFrame* main_frame = new EvtMainFrame(nullptr); main_frame->Show();