]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/html/about/about.cpp
redefined TRUE and FALSE to be of type bool
[wxWidgets.git] / samples / html / about / about.cpp
index 7b5f005112808825b191c84dd915fa5eefa2ecc2..7b6aec192e408eef9ecb067152e0af2ee81f123b 100644 (file)
@@ -9,7 +9,7 @@
 #endif
 
 // For compilers that support precompilation, includes "wx/wx.h".
-#include <wx/wxprec.h>
+#include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
     #pragma hdrstop
 // for all others, include the necessary headers (this file is usually all you
 // need because it includes almost all "standard" wxWindows headers
 #ifndef WX_PRECOMP
-    #include <wx/wx.h>
+    #include "wx/wx.h"
 #endif
 
-#include <wx/image.h>
-#include <wx/imagpng.h>
-#include <wx/wxhtml.h>
-#include <wx/statline.h>
+#include "wx/image.h"
+#include "wx/imagpng.h"
+#include "wx/wxhtml.h"
+#include "wx/statline.h"
 
 // ----------------------------------------------------------------------------
 // private classes
@@ -74,7 +74,7 @@
    Minimal_Forward,
 
     // controls start here (the numbers are, of course, arbitrary)
-   Minimal_Text = 1000,
+   Minimal_Text = 1000
    };
 
 // ----------------------------------------------------------------------------
    {
         wxBoxSizer *topsizer;
         wxHtmlWindow *html;
-        wxDialog dlg(this, -1, "About");
+        wxDialog dlg(this, -1, wxString("About"));
 
         topsizer = new wxBoxSizer(wxVERTICAL);