typo fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2000-02-23 18:50:56 +00:00
parent 0131687bb5
commit 54a8f42b9d

View File

@ -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);
}