*** empty log message ***

svn path=/trunk/boinc/; revision=8621
This commit is contained in:
Rom Walton 2005-10-10 18:24:04 +00:00
parent c5b0681a2f
commit 2d3c101ee4
1 changed files with 3 additions and 2 deletions

View File

@ -1253,13 +1253,14 @@ void CMainFrame::OnClose(wxCloseEvent& event) {
void CMainFrame::OnAlert(CMainFrameAlertEvent& event) {
wxLogTrace(wxT("Function Start/End"), wxT("CMainFrame::OnAlert - Function Begin"));
#ifdef __WXMSW__
CTaskBarIcon* pTaskbar = wxGetApp().GetTaskBarIcon();
wxASSERT(pTaskbar);
if ((IsShown() && !event.m_notification_only) || (IsShown() && !pTaskbar->IsBalloonsSupported())) {
::wxMessageBox(event.m_message, event.m_title, event.m_style, this);
if (!event.m_notification_only) {
::wxMessageBox(event.m_message, event.m_title, event.m_style, this);
}
} else {
// If the main window is hidden or minimzed use the system tray ballon
// to notify the user instead. This keeps dialogs from interfering