reverted previous patch applied by mistake

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-07-25 17:21:42 +00:00
parent f2f38edc2c
commit b765da9f50

View File

@@ -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();
}
}