*** empty log message ***

svn path=/trunk/boinc/; revision=11066
This commit is contained in:
Charlie Fenton 2006-09-01 08:39:25 +00:00
parent 55aa34e860
commit dd87ace068
2 changed files with 9 additions and 1 deletions

View File

@ -9644,3 +9644,10 @@ Rom 31 Aug 2006
MainDocument.cpp, .h
sg_BoincSimpleGUI.cpp
ViewWork.cpp
Charlie 1 Sep 2006 (HEAD and boinc_core_release_5_6_1 tag)
- Removed wxLogTrace call which crashes BOINC Manager on Mac. (The compiler
gave a warning about this statement.)
clientgui/
MainDocument.cpp

View File

@ -324,7 +324,8 @@ int CMainDocument::CachedStateUpdate() {
m_pNetworkConnection->SetStateDisconnected();
}
wxTimeSpan tsStateParseDuration(wxDateTime::Now() - m_dtCachedStateTimestamp);
wxLogTrace(wxT("Function Status"), wxT("CMainDocument::CachedStateUpdate - State Update Time (Milliseconds) '%d'"), tsStateParseDuration.GetMilliseconds());
// This causes a crash on Macintosh
// wxLogTrace(wxT("Function Status"), wxT("CMainDocument::CachedStateUpdate - State Update Time (Milliseconds) '%d'"), tsStateParseDuration.GetMilliseconds());
pFrame->UpdateStatusText(_("Retrieving host information; please wait..."));