*** empty log message ***

svn path=/trunk/boinc/; revision=11907
This commit is contained in:
Walt Gribben 2007-01-19 17:32:16 +00:00
parent fa01d2b85f
commit 3232dcf09f
2 changed files with 10 additions and 0 deletions

View File

@ -826,3 +826,9 @@ Charlie 19 Jan 2007
project.pbxproj
boinc.xcodeproj/
project.pbxproj
Walt 19 Jan 2007
MGR: Fix compiler error: GetTaskBarIcon isn't used in Linux
clientgui/
BOINCBaseFrame.cpp

View File

@ -305,11 +305,15 @@ void CBOINCBaseFrame::OnExit(wxCommandEvent& WXUNUSED(event)) {
if (pMSM)
delete pMSM;
#endif
// TaskBarIcon isn't used in Linux
#if defined(__WXMSW__) || defined(__WXMAC__)
CTaskBarIcon* pTBI = wxGetApp().GetTaskBarIcon();
if (pTBI)
delete pTBI;
Close(true);
#endif
}
wxLogTrace(wxT("Function Start/End"), wxT("CAdvancedFrame::OnExit - Function End"));
}