From: eduardo.davila@creatis.insa-lyon.fr Date: Tue, 28 Jan 2025 14:19:21 +0000 (+0100) Subject: Clean code X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=d8fad3bea98887b8309bf67ce694eb8eff7d8fae;p=creaVtk.git Clean code --- 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);