From db9abb12cec4d38e7dd3f7d436ad1561e468eb4a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 17 Apr 2014 00:23:44 -0700 Subject: [PATCH] client: fix bug in parsing from account managers Also Manager message tweak --- client/acct_mgr.cpp | 1 + clientgui/DlgAdvPreferencesBase.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/client/acct_mgr.cpp b/client/acct_mgr.cpp index bb2e42df8b..efc1851d7b 100644 --- a/client/acct_mgr.cpp +++ b/client/acct_mgr.cpp @@ -278,6 +278,7 @@ int AM_ACCOUNT::parse(XML_PARSER& xp) { if (xp.parse_str("no_rsc", buf, sizeof(buf))) { handle_no_rsc(buf, true); + continue; } if (xp.parse_bool("dont_request_more_work", btemp)) { dont_request_more_work.set(btemp); diff --git a/clientgui/DlgAdvPreferencesBase.cpp b/clientgui/DlgAdvPreferencesBase.cpp index ef8123f271..f393a742d7 100644 --- a/clientgui/DlgAdvPreferencesBase.cpp +++ b/clientgui/DlgAdvPreferencesBase.cpp @@ -43,7 +43,7 @@ CDlgAdvPreferencesBase::CDlgAdvPreferencesBase( wxWindow* parent, int id, wxStri wxASSERT(pSkinAdvanced); wxASSERT(wxDynamicCast(pSkinAdvanced, CSkinAdvanced)); - strCaption.Printf(_("%s - Preferences"), pSkinAdvanced->GetApplicationShortName().c_str()); + strCaption.Printf(_("%s - Computing preferences"), pSkinAdvanced->GetApplicationShortName().c_str()); } this->SetExtraStyle( this->GetExtraStyle() | wxWS_EX_VALIDATE_RECURSIVELY );