From d8fad3bea98887b8309bf67ce694eb8eff7d8fae Mon Sep 17 00:00:00 2001 From: "eduardo.davila@creatis.insa-lyon.fr" Date: Tue, 28 Jan 2025 15:19:21 +0100 Subject: [PATCH] Clean code --- appli/template_wx_appli/winApp.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/appli/template_wx_appli/winApp.cpp b/appli/template_wx_appli/winApp.cpp index 17670cb..606275b 100644 --- a/appli/template_wx_appli/winApp.cpp +++ b/appli/template_wx_appli/winApp.cpp @@ -41,7 +41,7 @@ class myApp : public wxApp { public: - bool OnInit( ); + bool OnInit(); int OnExit() { return true; } }; @@ -55,7 +55,6 @@ bool myApp::OnInit( ) setlocale(LC_NUMERIC, "C"); #endif - wxFrame *frame = new wxFrame(NULL , -1 ,_T("My window..")); SetTopWindow(frame); frame->Show(true); -- 2.49.0