]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/opengl/isosurf/isosurf.cpp
Extensive documentation typo patch (closes #13063).
[wxWidgets.git] / samples / opengl / isosurf / isosurf.cpp
index 471942b637077713270e80aa17e00f53653be83a..a2ea654f916d98f1d7f5fcec5c4d304480a224d1 100644 (file)
@@ -57,7 +57,7 @@ bool MyApp::OnInit()
         return false;
 
     // Create the main frame window
-    SetTopWindow(new MyFrame(NULL, wxT("wxWidgets OpenGL Isosurf Sample")));
+    MyFrame *frame = new MyFrame(NULL, wxT("wxWidgets OpenGL Isosurf Sample"));
 
     return true;
 }
@@ -232,7 +232,7 @@ void TestGLCanvas::LoadSurface(const wxString& filename)
 
     wxLogMessage(wxT("Loaded %d vertices, %d triangles from '%s'"),
                  m_numverts, m_numverts-2, filename.c_str());
-                 
+
     // NOTE: for some reason under wxGTK the following is required to avoid that
     //       the surface gets rendered in a small rectangle in the top-left corner of the frame
     PostSizeEventToParent();