no changes, just comments fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34838 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-07-13 17:58:34 +00:00
parent 837db46d7a
commit 2148dc99a9

View File

@@ -111,11 +111,11 @@ bool MyApp::OnInit()
wxXmlResource::Get()->Load(wxT("rc/variable.xrc")); wxXmlResource::Get()->Load(wxT("rc/variable.xrc"));
// Make an instance of your derived frame. Passing NULL (the default value // Make an instance of your derived frame. Passing NULL (the default value
// of MyFrame's constructor is NULL) as the frame doesn't have a frame // of MyFrame's constructor is NULL) as the frame doesn't have a parent
// since it is the first window. // since it is the main application window.
MyFrame *frame = new MyFrame(); MyFrame *frame = new MyFrame();
// Show the frame. // Show the frame as it's created initially hidden.
frame->Show(true); frame->Show(true);
// Return true to tell program to continue (false would terminate). // Return true to tell program to continue (false would terminate).