X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/22dec51f90235d04277b7f2e2f5fee99ed4753b9..6dd18972d509fce16afa05eba194ca21db2c48f3:/src/common/log.cpp?ds=sidebyside diff --git a/src/common/log.cpp b/src/common/log.cpp index 98e8b62cd9..d9a6c7eb30 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -630,16 +630,12 @@ void wxLogChain::DoLog(wxLogLevel level, const wxChar *szString, time_t t) { // bogus cast just to access protected DoLog ((wxLogChain *)m_logOld)->DoLog(level, szString, t); - - m_bHasMessages |= m_logOld->HasPendingMessages(); } if ( m_logNew && m_logNew != this ) { // as above... ((wxLogChain *)m_logNew)->DoLog(level, szString, t); - - m_bHasMessages |= m_logNew->HasPendingMessages(); } }