mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11907
This commit is contained in:
parent
fa01d2b85f
commit
3232dcf09f
|
@ -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
|
||||
|
|
|
@ -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"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue