MGR: When an account manager is selected, populate the account manager name field if it is available.

This commit is contained in:
Rom Walton 2015-05-27 19:02:43 -04:00
parent 1c506928e7
commit 176111a59d
1 changed files with 3 additions and 1 deletions

View File

@ -340,9 +340,11 @@ void CAccountManagerInfoPage::OnPageChanging( wxWizardExEvent& event ) {
if (event.GetDirection() == false) return;
CWizardAttach* pWA = ((CWizardAttach*)GetParent());
CAcctMgrListItem* pItem = (CAcctMgrListItem*)(m_pProjectListCtrl->GetClientData(m_pProjectListCtrl->GetSelection()));
// Update authoritative data in CWizardAttach
pWA->SetProjectURL(m_pProjectUrlCtrl->GetValue());
pWA->SetProjectURL(pItem->GetURL());
pWA->SetProjectName(pItem->GetName());
}
/*!