]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
Fixed sashwin events
[wxWidgets.git] / src / common / log.cpp
index 6e102e6753222e5c26c60d35e16e062ab6495cf7..7268dddc04d171ec9350c60196a496a9e5b1f34e 100644 (file)
@@ -543,7 +543,9 @@ wxLogStream::wxLogStream(ostream *ostr)
 
 void wxLogStream::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
 {
-    (*m_ostr) << wxConvertWX2MB(szString) << endl;
+    wxString str;
+    TimeStamp(&str);
+    (*m_ostr) << str << wxConvertWX2MB(szString) << endl;
 }
 #endif // wxUSE_STD_IOSTREAM