*** empty log message ***

svn path=/trunk/boinc/; revision=10759
This commit is contained in:
Charlie Fenton 2006-07-26 12:10:17 +00:00
parent 83bbb342e2
commit 15933d5fc3
2 changed files with 6 additions and 2 deletions

View File

@ -8059,15 +8059,17 @@ Rom 25 July 2006 (HEAD)
- Tag for 5.5.9 release, all platforms. - Tag for 5.5.9 release, all platforms.
boinc_core_release_5_5_9 boinc_core_release_5_5_9
Charlie 26 July 2006 Charlie 26 July 2006 (HEAD - all changes tagged for boinc_core_release_5_5_9)
- Don't add "Switch to Simple GUI" to File menu if SIMPLEGUI not defined.
- In shell scripts, added quotation marks and braces around variables - In shell scripts, added quotation marks and braces around variables
holding file names or paths for safety in case names contain spaces. holding file names or paths for safety in case names contain spaces.
Added GPL. Added GPL.
- Mac: Created shell scripts for setting up security in ssytems with - Mac: Created shell scripts for setting up security in ssytems with
stand-alone BOINC Client (i.e., no Manager.) stand-alone BOINC Client (i.e., no Manager.)
- Removed redundant line of code in SetupSecurity.cpp (tagged for 5.5.9). - Removed redundant line of code in SetupSecurity.cpp.
clientgui/ clientgui/
AdvancedFrame.cpp
mac/ mac/
SetupSecurity.cpp SetupSecurity.cpp
mac_build/ mac_build/

View File

@ -296,11 +296,13 @@ bool CAdvancedFrame::CreateMenu() {
// File menu // File menu
wxMenu *menuFile = new wxMenu; wxMenu *menuFile = new wxMenu;
#ifdef SIMPLEGUI
menuFile->Append( menuFile->Append(
ID_FILESWITCHGUI, ID_FILESWITCHGUI,
_("&Switch to Simple GUI"), _("&Switch to Simple GUI"),
_("Display the simple BOINC graphical interface.") _("Display the simple BOINC graphical interface.")
); );
#endif
// %s is the application name // %s is the application name
// i.e. 'BOINC Manager', 'GridRepublic Manager' // i.e. 'BOINC Manager', 'GridRepublic Manager'