Don't call base class version unnecessarily in wxLogWindow::DoLogTextAtLevel().
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 18 Jan 2010 00:28:21 +0000 (00:28 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 18 Jan 2010 00:28:21 +0000 (00:28 +0000)
commit954f8d64fb6202884b4ad5c235af188e9a6622e4
tree84363c5bc2431668cc843de1fc59366b4bccd852
parente652fc480769209817b53d776c95ab123741630d
Don't call base class version unnecessarily in wxLogWindow::DoLogTextAtLevel().

This is unnecessary as the log message is already passed to the previous
logger by the base class wxLogChain::DoLogRecord() implementation. Worse, it's
actively harmful as it resulted in asserts in wxLog::DoLogText() when built
with WXWIN_COMPATIBILITY_2_8==0.

Closes #11526.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63167 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
src/generic/logg.cpp