*** empty log message ***

svn path=/trunk/boinc/; revision=11916
This commit is contained in:
Walt Gribben 2007-01-21 19:03:52 +00:00
parent f27530a3e6
commit ba0f30d4cf
2 changed files with 9 additions and 2 deletions

View File

@ -906,3 +906,10 @@ Rom 21 Jan 2007
lib/
diagnostics_win.C
hostinfo.C, .h
Walt 19 Jan 2007
- MGR: take Close() function call out of #if/#endif block so the manager
exits when the 'exit' menu item is selected.
clientgui/
BOINCBaseFrame.cpp

View File

@ -311,9 +311,9 @@ void CBOINCBaseFrame::OnExit(wxCommandEvent& WXUNUSED(event)) {
CTaskBarIcon* pTBI = wxGetApp().GetTaskBarIcon();
if (pTBI)
delete pTBI;
Close(true);
#endif
Close(true);
}
wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnExit - Function End"));
}