]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
Correct harmless typos.
[wxWidgets.git] / src / common / log.cpp
index 98256b16e0ea3275ecf10230a4e0b1235d440145..37143c97c4c000ac7b3b18f75b4c9639f20a3b30 100644 (file)
@@ -209,8 +209,7 @@ void wxLogFatalError(const wxChar *szFormat, ...)
 void wxVLogVerbose(const wxChar *szFormat, va_list argptr)
 {
     if ( IsLoggingEnabled() ) {
-        wxLog *pLog = wxLog::GetActiveTarget();
-        if ( pLog != NULL && pLog->GetVerbose() ) {
+        if ( wxLog::GetActiveTarget() != NULL && wxLog::GetVerbose() ) {
             wxCRIT_SECT_LOCKER(locker, gs_csLogBuf);
 
             wxVsnprintf(s_szBuf, s_szBufSize, szFormat, argptr);