mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=11892
This commit is contained in:
parent
65cdb2055d
commit
2f164ec72d
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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(
|
||||
|
|
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue