use DisableTimestamp() instead of SetTimestamp(NULL)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46985 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-06-27 19:25:58 +00:00
parent 69f5e42053
commit 7f2bcd064c
2 changed files with 2 additions and 2 deletions

View File

@ -546,7 +546,7 @@ MyFrame::MyFrame()
wxTE_MULTILINE);
m_textctrl->SetEditable(false);
wxLog::SetTimestamp(NULL);
wxLog::DisableTimestamp();
m_logOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_textctrl));
wxLogMessage(_T("Brief explanations: the commands or the \"Menu\" menu ")

View File

@ -105,7 +105,7 @@ wxEmulatorApp::wxEmulatorApp()
bool wxEmulatorApp::OnInit()
{
#if wxUSE_LOG
wxLog::SetTimestamp(NULL);
wxLog::DisableTimestamp();
#endif // wxUSE_LOG
wxInitAllImageHandlers();