From: Vadim Zeitlin Date: Thu, 28 Jan 1999 13:37:49 +0000 (+0000) Subject: wxLogMessage()s are now shown (again) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/797e42bcdb0de66b77f5fafe9522f30ce9686371 wxLogMessage()s are now shown (again) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index f28e32fc80..7063dc6548 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -481,8 +481,8 @@ void wxLogGui::DoLog(wxLogLevel level, const char *szString) { switch ( level ) { case wxLOG_Info: - case wxLOG_Message: if ( GetVerbose() ) + case wxLOG_Message: if ( !m_bErrors ) { m_aMessages.Add(szString); m_bHasMessages = TRUE;