- MGR: fix build break for GCC based compilers.

clientgui/
        ProjectInfoPage.cpp

svn path=/trunk/boinc/; revision=17179
This commit is contained in:
Rom Walton 2009-02-07 16:39:39 +00:00
parent 13ed05b8dc
commit ee35c024bb
2 changed files with 8 additions and 2 deletions

View File

@ -1327,3 +1327,9 @@ David 6 Feb 2009
html/inc/
host.inc
user.inc
Rom 7 Feb 2009
- MGR: fix build break for GCC based compilers.
clientgui/
ProjectInfoPage.cpp

View File

@ -275,8 +275,8 @@ void CProjectInfoPage::OnPageChanged( wxWizardExEvent& event ) {
wxLogTrace(
wxT("Function Status"),
wxT("CProjectInfoPage::OnPageChanged - Name: '%s', URL: '%s', Supported: '%d'"),
wxString(pl.projects[i]->name.c_str(), wxConvUTF8),
wxString(pl.projects[i]->url.c_str(), wxConvUTF8),
wxString(pl.projects[i]->name.c_str(), wxConvUTF8).c_str(),
wxString(pl.projects[i]->url.c_str(), wxConvUTF8).c_str(),
bSupportedPlatformFound
);