From e2250d6417097fb29b0deece838462434beb3c6e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 30 Jun 2011 12:20:38 +0000 Subject: [PATCH] Fix harmless warning about unused variable in isosurf sample. Don't declare and initialize a variable that we never use. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68110 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/opengl/isosurf/isosurf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/opengl/isosurf/isosurf.cpp b/samples/opengl/isosurf/isosurf.cpp index 2138a85c26..707b48c424 100644 --- a/samples/opengl/isosurf/isosurf.cpp +++ b/samples/opengl/isosurf/isosurf.cpp @@ -57,7 +57,7 @@ bool MyApp::OnInit() return false; // Create the main frame window - MyFrame *frame = new MyFrame(NULL, wxT("wxWidgets OpenGL Isosurf Sample")); + new MyFrame(NULL, wxT("wxWidgets OpenGL Isosurf Sample")); return true; } -- 2.45.2