From: Robin Dunn Date: Fri, 8 Mar 2002 21:20:57 +0000 (+0000) Subject: Fixed compilation error. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d91535c47f8bb17ab9740e35baea3f6450de026d Fixed compilation error. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14497 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index 182246bdb0..420c172a63 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -246,7 +246,7 @@ void wxLogVerbose(const wxChar *szFormat, ...) p += 2; wxVsnprintf(p, len, szFormat, argptr); - + wxLog::OnLog(wxLOG_Trace, s_szBuf, time(NULL)); } } @@ -349,7 +349,7 @@ wxLog::wxLog() m_bHasMessages = FALSE; } -wxChar *wxLog::SetLogBuffer( wxChar *buf, size_t size = 0 ) +wxChar *wxLog::SetLogBuffer( wxChar *buf, size_t size) { wxChar *oldbuf = s_szBuf; @@ -561,7 +561,7 @@ Boolean IsCompatibleVersion(short inVersion) result = (inVersion <= block->apiHiVersion); } - return result; + return result; } /* ---------------------------------------------------------------------------