From: Vadim Zeitlin Date: Wed, 23 Feb 2000 18:50:56 +0000 (+0000) Subject: typo fixed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/54a8f42b9d7111ab7ee7ccbcca8fcc6873906507 typo fixed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index e187622915..522bdc83eb 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -371,7 +371,7 @@ void wxLog::DoLog(wxLogLevel level, const wxChar *szString, time_t t) #ifdef __WXDEBUG__ { wxString msg = level == wxLOG_Trace ? wxT("Trace: ") - : wxT("Debug: "), + : wxT("Debug: "); msg << szString; DoLogString(msg, t); }