]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
Hopefully fixed library names generated by wx-config for OS/2's PM port.
[wxWidgets.git] / src / common / log.cpp
index 6397766ef68b90d3f38d48fccdb0bc805b8dcd86..0471c87c7646952b51226ba21b4c30d627a927e2 100644 (file)
@@ -528,9 +528,12 @@ void wxLog::Flush()
 
 void wxLogBuffer::Flush()
 {
-    wxMessageOutputBest out;
-    out.Printf(_T("%s"), m_str.c_str());
-    m_str.clear();
+    if ( !m_str.empty() )
+    {
+        wxMessageOutputBest out;
+        out.Printf(_T("%s"), m_str.c_str());
+        m_str.clear();
+    }
 }
 
 void wxLogBuffer::DoLogString(const wxChar *szString, time_t WXUNUSED(t))