*** empty log message ***

svn path=/trunk/boinc/; revision=11788
This commit is contained in:
Charlie Fenton 2007-01-06 05:46:26 +00:00
parent 2cc3442bfc
commit f55c97c26a
3 changed files with 11 additions and 4 deletions

View File

@ -182,6 +182,13 @@ Rom 5 Jan 2007
sg_DlgMessages.cpp, .h
sg_DlgPreferences.cpp, .h
Charlie 5 Jan 2007
- MGR: Fix build breaks.
clientgui/
sg_DlgMessages.cpp
sg_DlgPreferences.cpp
Charlie 5 Jan 2007
- MGR: Fix cosmetic bugs on Mac.
NOTE: I believe my changes will work on Windows, but I couldn't test

View File

@ -265,7 +265,7 @@ void CPanelMessages::CreateControls()
itemButton45->SetBitmapSelected(*pSkinSimple->GetHelpButton()->GetBitmapClicked());
}
#ifdef wxUSE_TOOLTIPS
itemButton45->SetToolTip(new wxToolTip(_("Get help with BOINC")););
itemButton45->SetToolTip(new wxToolTip(_("Get help with BOINC")));
#endif
itemBoxSizer4->Add(itemButton45, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
#else

View File

@ -503,12 +503,12 @@ void CPanelPreferences::CreateControls()
itemButton46->SetBitmapSelected(*pSkinSimple->GetHelpButton()->GetBitmapClicked());
}
#ifdef wxUSE_TOOLTIPS
itemButton45->SetToolTip(new wxToolTip(_("Get help with BOINC")););
itemButton46->SetToolTip(new wxToolTip(_("Get help with BOINC")));
#endif
itemBoxSizer4->Add(itemButton45, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
itemBoxSizer44->Add(itemButton46, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
#else
wxContextHelpButton* itemButton45 = new wxContextHelpButton(this);
itemBoxSizer4->Add(itemButton45, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
itemBoxSizer44->Add(itemButton45, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5);
#endif
#endif