*** empty log message ***

svn path=/trunk/boinc/; revision=11892
This commit is contained in:
David Anderson 2007-01-17 20:28:17 +00:00
parent 65cdb2055d
commit 2f164ec72d
4 changed files with 19 additions and 2 deletions

View File

@ -709,3 +709,13 @@ David 17 Jan 2007
html/inc/
news.inc
David 17 Jan 2007
- don't start benchmarks if they're already running
- Manager: "Defect from X" -> "Stop using X"
client/
cs_benchmark.C
clientgui/
AdvancedFrame.cpp
WelcomePage.cpp

View File

@ -172,6 +172,13 @@ DWORD WINAPI win_cpu_benchmarks(LPVOID p) {
void CLIENT_STATE::start_cpu_benchmarks() {
int i;
if (benchmarks_running) {
msg_printf(0, MSG_INFO,
"Can't start benchmarks - they're already running"
);
return;
}
if (skip_cpu_benchmarks) {
if (log_flags.measurement_debug) {
msg_printf(0, MSG_INFO,

View File

@ -457,7 +457,7 @@ bool CAdvancedFrame::CreateMenu() {
);
if (is_acct_mgr_detected) {
strMenuName.Printf(
_("&Defect from %s"),
_("&Stop using %s"),
wxString(ami.acct_mgr_name.c_str(), wxConvUTF8).c_str()
);
menuAdvanced->Append(

View File

@ -319,7 +319,7 @@ void CWelcomePage::OnPageChanged( wxWizardExEvent& event ) {
);
} else if (IS_ACCOUNTMANAGERREMOVEWIZARD()) {
strBuffer.Printf(
_("&Defect from %s"),
_("&Stop using%s"),
pWAM->m_strProjectName.c_str()
);
m_pTitleStaticCtrl->SetLabel(