*** empty log message ***

svn path=/trunk/boinc/; revision=10931
This commit is contained in:
Walt Gribben 2006-08-16 02:43:47 +00:00
parent 6c5a1408ee
commit 31466b12a8
3 changed files with 20 additions and 0 deletions

View File

@ -8867,3 +8867,10 @@ Bruce 15 Aug 2006
sched/
sched_locality.C
Walt 15 Aug 2006
- Bug fix: in Linux activity menu radio buttons worked as one group
instead of the two groups defined. Use wxMenu::Append for the
separator instead of AppendSeparator.
clientgui/
AdvancedFrame.cpp

View File

@ -365,7 +365,19 @@ bool CAdvancedFrame::CreateMenu() {
_("Stop work regardless of preferences")
);
#if defined(__WXMSW__) || defined(__WXMAC__)
menuActivity->AppendSeparator();
#else
menuActivity->Append(
ID_ACTIVITYMENUSEPARATOR,
wxEmptyString,
wxEmptyString,
wxITEM_SEPARATOR
);
#endif
menuActivity->AppendRadioItem(
ID_FILENETWORKRUNALWAYS,

View File

@ -50,6 +50,7 @@
#define ID_FILESWITCHGUI 6032
#define ID_ALERTPOLLTIMER 6033
#define ID_REFRESHMESSAGESTIMER 6034
#define ID_ACTIVITYMENUSEPARATOR 6035
#define ID_SIMPLEFRAME 6100
#define ID_TB_TIMER 6800
#define ID_TB_SUSPEND 6801