*** empty log message ***

svn path=/trunk/boinc/; revision=6989
This commit is contained in:
Rom Walton 2005-08-02 22:15:46 +00:00
parent b9117db8ee
commit 62a3c9967e
2 changed files with 6 additions and 2 deletions

View File

@ -52,10 +52,12 @@ END_EVENT_TABLE ()
CTaskBarIcon::CTaskBarIcon() :
#ifdef __WXMAC__
#if defined(__WXMAC__)
wxTaskBarIcon(DOCK)
#else
#elif defined(__WXMSW__)
wxTaskBarIconEx(wxT("BOINCManagerSystray"))
#else
wxTaskBarIcon()
#endif
{
m_iconTaskBarIcon = wxIcon(boinc_xpm);

View File

@ -73,7 +73,9 @@ public:
#ifdef __APPLE__
wxMenu *CreatePopupMenu();
#endif
#ifndef __WXMSW__
inline bool CTaskBarIcon::IsBalloonsSupported() {
return false;
}