mirror of https://github.com/BOINC/boinc.git
Merge pull request #3069 from AenBleidd/am_encoding_fix
[Manager] Make proper UTF-8 decoding of AM info
This commit is contained in:
commit
63d679cce8
clientgui
|
@ -302,10 +302,10 @@ void CAccountManagerInfoPage::OnPageChanged( wxWizardExEvent& event ) {
|
|||
|
||||
CAcctMgrListItem* pItem = new CAcctMgrListItem();
|
||||
|
||||
pItem->SetURL( pl.account_managers[i]->url.c_str() );
|
||||
pItem->SetName( pl.account_managers[i]->name.c_str() );
|
||||
pItem->SetImage( pl.account_managers[i]->image.c_str() );
|
||||
pItem->SetDescription( pl.account_managers[i]->description.c_str() );
|
||||
pItem->SetURL( wxString(pl.account_managers[i]->url.c_str(), wxConvUTF8) );
|
||||
pItem->SetName( wxString(pl.account_managers[i]->name.c_str(), wxConvUTF8) );
|
||||
pItem->SetImage( wxString(pl.account_managers[i]->image.c_str(), wxConvUTF8) );
|
||||
pItem->SetDescription( wxString(pl.account_managers[i]->description.c_str(), wxConvUTF8) );
|
||||
|
||||
|
||||
m_pProjectListCtrl->Append(
|
||||
|
|
Loading…
Reference in New Issue