]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/init.cpp
scrolling of foreign windowsplus sample
[wxWidgets.git] / src / common / init.cpp
index 63cf1f4eceb156f1e90a17d1be28b8fefedb4d25..8af743b0d2fe4012f4b02423368a9db492bd64b9 100644 (file)
     #pragma implementation "appbase.h"
 #endif
 
+#include "wx/wxprec.h"
+
+#ifdef    __BORLANDC__
+  #pragma hdrstop
+#endif  //__BORLANDC__
+
+
 #include "wx/app.h"
 #include "wx/debug.h"
 
@@ -46,7 +53,7 @@ wxAppInitializerFunction
 class /* no WXDLLEXPORT */ wxConsoleApp : public wxApp
 {
 public:
-    virtual int OnRun() { wxFAIL_MSG(T("unreachable")); return 0; }
+    virtual int OnRun() { wxFAIL_MSG(wxT("unreachable")); return 0; }
 };
 
 // ----------------------------------------------------------------------------
@@ -68,7 +75,7 @@ bool WXDLLEXPORT wxInitialize()
     }
 
     wxASSERT_MSG( !wxTheApp,
-                  T("either call wxInitialize or create app, not both!") );
+                  wxT("either call wxInitialize or create app, not both!") );
 
     wxClassInfo::InitializeClasses();