]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
Added support for delayed deactivation of windows (for MDI)
[wxWidgets.git] / src / common / log.cpp
index c51d5c62bf4a4ec69346b6d82723cec2c7370350..02b83693bfc8bbc3f2dfc6ed0fdff2b76a8b616d 100644 (file)
   #include  "wx/mac/private.h"  // includes mac headers
 #endif
 
+#if defined(__MWERKS__) && wxUSE_UNICODE
+    #include <wtime.h>
+#endif
+
+
 // ----------------------------------------------------------------------------
 // non member functions
 // ----------------------------------------------------------------------------
@@ -717,9 +722,8 @@ void wxLogStderr::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
 
 #if defined(__WXMAC__) && !defined(__DARWIN__) && wxUSE_GUI
     Str255 pstr ;
-    strcpy( (char*) pstr , str.c_str() ) ;
-    strcat( (char*) pstr , ";g" ) ;
-    c2pstr( (char*) pstr ) ;
+    wxString output = str + wxT(";g") ;
+    wxMacStringToPascal( output.c_str() , pstr ) ;
 
     Boolean running = false ;