From 282eb70450f1740d8a8e3732bcf31d06e0a5e5ca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 3 Nov 2002 21:37:51 +0000 Subject: [PATCH] suppressed VC++ warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17691 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/exec/exec.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/samples/exec/exec.cpp b/samples/exec/exec.cpp index 30bed13776..fec7e51750 100644 --- a/samples/exec/exec.cpp +++ b/samples/exec/exec.cpp @@ -387,6 +387,10 @@ bool MyApp::OnInit() // main frame // ---------------------------------------------------------------------------- +#ifdef __VISUALC__ +#pragma warning(disable: 4355) // this used in base member initializer list +#endif + // frame constructor MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) : wxFrame((wxFrame *)NULL, -1, title, pos, size),