]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/txrc.tex
allow to change the event propagation level (modified patch 743086)
[wxWidgets.git] / docs / latex / wx / txrc.tex
index 7cbcd7a5327e285862b20f5c9c561cb79f4b33cf..10568b0dd06fd24c9db8f446171d6db006ec0725 100644 (file)
@@ -148,6 +148,8 @@ Use the {\tt -c} switch to
 contain a function called {\it InitXmlResource} (unless you override this with
 a command line switch). Use it to load the resource:
 \begin{verbatim}
+  extern void InitXMLResource(); // defined in generated file
+  ...
   wxXmlResource::Get()->InitAllHandlers();
   InitXmlResource();
   ...
@@ -228,8 +230,8 @@ bool MyApp::OnInit()
 
     MyFrame *frame = new MyFrame("XML resources demo",
                                  wxPoint(50, 50), wxSize(450, 340));
-    frame->Show(TRUE);
-    return TRUE;
+    frame->Show(true);
+    return true;
 }
 
 // ----------------------------------------------------------------------------
@@ -249,8 +251,8 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
 // event handlers
 void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
 {
-    // TRUE is to force the frame to close
-    Close(TRUE);
+    // true is to force the frame to close
+    Close(true);
 }
 
 void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))