Ticket #774: wxstring_conversion.patch
File wxstring_conversion.patch, 1.2 KB (added by , 16 years ago) |
---|
-
clientgui/WelcomePage.cpp
221 221 itemBoxSizer3->Add(m_pDirectionsStaticCtrl, 0, wxALIGN_LEFT|wxALL, 5); 222 222 223 223 if ( wcg ) { 224 m_pAppButton = new wxButton(this,ID_CHANGEAPPS, "Change Research Applications at World Community Grid");224 m_pAppButton = new wxButton(this,ID_CHANGEAPPS, wxT("Change Research Applications at World Community Grid")); 225 225 wxSizer* appSizer = this->GetSizer(); 226 226 appSizer->Add(m_pAppButton,0, wxALIGN_CENTER,5); 227 227 } … … 525 525 526 526 void CWelcomePage::OpenWCG( wxCommandEvent& event ) { 527 527 wxLogTrace(wxT("Function Start/End"), wxT("CWelcomePage::OpenWCG - Function Begin")); 528 wxString wcgUrl = "http://www.worldcommunitygrid.org/ms/viewMyProjects.do";528 wxString wcgUrl = wxT("http://www.worldcommunitygrid.org/ms/viewMyProjects.do"); 529 529 wxHyperLink::ExecuteLink(wcgUrl); 530 530 CWizardAttachProject* pWAP = ((CWizardAttachProject*)GetParent()); 531 531 pWAP->SimulateCancelButton();