]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
Fixed switching to a different drive/volume on OS/2.
[wxWidgets.git] / src / common / log.cpp
index c59af3cb3ff40461df363cfdb0b5f75ed4b365e4..0687124fe8ab11a65d9140f9316ad257e40d5e92 100644 (file)
@@ -329,7 +329,7 @@ void wxLog::OnLog(wxLogLevel level, const wxChar *szString, time_t t)
             {
                 if ( GetRepetitionCounting() )
                 {
-                    pLogger->DoLogNumberOfRepeats();
+                    DoLogNumberOfRepeats();
                 }
                 ms_prevString = szString;
                 ms_prevLevel = level;
@@ -555,8 +555,8 @@ void wxLogStderr::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
     TimeStamp(&str);
     str << szString;
 
-    fputs(str.mb_str(), m_fp);
-    fputc(_T('\n'), m_fp);
+    wxFputs(str, m_fp);
+    wxFputc(_T('\n'), m_fp);
     fflush(m_fp);
 
     // under GUI systems such as Windows or Mac, programs usually don't have