*** empty log message ***

svn path=/trunk/boinc/; revision=6753
This commit is contained in:
Charlie Fenton 2005-07-22 09:26:40 +00:00
parent 3d201efa1f
commit 7f446ee2db
2 changed files with 6 additions and 3 deletions

View File

@ -9428,11 +9428,14 @@ Rom 21 July 2005
boincmgr.vcproj
Charlie 22 July 2005
- Mac Update XCode project for use with Wxmac-2.6.1 (added IOKit
- Fix reversed checking of Network Activity menu items in taskbar.
- Mac: Update XCode project for use with Wxmac-2.6.1 (added IOKit
Framework to BOINC Manager target.)
- Update Build instructions for wxMac-2.6.1, more detailed info
for building libraries and sceince projects.
clientgui/
BOINCTaskBar.cpp
doc/
mac_build.html
mac_build/

View File

@ -429,10 +429,10 @@ void CTaskBarIcon::AdjustMenuItems(wxMenu* menu) {
case RUN_MODE_ALWAYS:
menu->Check(ID_TB_NETWORKRUNALWAYS, true);
break;
case RUN_MODE_NEVER:
case RUN_MODE_AUTO:
menu->Check(ID_TB_NETWORKRUNBASEDONPREPERENCES, true);
break;
case RUN_MODE_AUTO:
case RUN_MODE_NEVER:
menu->Check(ID_TB_NETWORKSUSPEND, true);
break;
}