git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34563
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
void wxLogBuffer::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))
}
void wxLogBuffer::DoLogString(const wxChar *szString, time_t WXUNUSED(t))