From b765da9f5090ef076302eb0d12cfc11b61296430 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 25 Jul 2004 17:21:42 +0000 Subject: [PATCH] reverted previous patch applied by mistake git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/log.cpp | 4 ---- 1 file changed, 4 deletions(-) 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(); } } -- 2.50.0