]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/xrc/xrcdemo.cpp
allow adjusting the combo button size (patch 1489452)
[wxWidgets.git] / samples / xrc / xrcdemo.cpp
index 64b0309f60be9f2c2cee52de4f16a83037f86344..a6a8a1a7c65c68952323f0ef668f27b4c62901e0 100644 (file)
@@ -7,14 +7,6 @@
 // Licence:     wxWindows licence
 //-----------------------------------------------------------------------------
 
 // Licence:     wxWindows licence
 //-----------------------------------------------------------------------------
 
-//-----------------------------------------------------------------------------
-// GCC implementation
-//-----------------------------------------------------------------------------
-
-#ifdef __GNUG__
-    #pragma implementation "xrcdemo.h"
-#endif
-
 //-----------------------------------------------------------------------------
 // Standard wxWidgets headers
 //-----------------------------------------------------------------------------
 //-----------------------------------------------------------------------------
 // Standard wxWidgets headers
 //-----------------------------------------------------------------------------
@@ -111,11 +103,11 @@ bool MyApp::OnInit()
     wxXmlResource::Get()->Load(wxT("rc/variable.xrc"));
 
     // Make an instance of your derived frame. Passing NULL (the default value
     wxXmlResource::Get()->Load(wxT("rc/variable.xrc"));
 
     // 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
-    // since it is the first window.
+    // of MyFrame's constructor is NULL) as the frame doesn't have a parent
+    // 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);
 
     // Return true to tell program to continue (false would terminate).
     frame->Show(true);
 
     // Return true to tell program to continue (false would terminate).