diff --git a/checkin_notes b/checkin_notes index 018fdfbf98..3b1db42909 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/clientgui/ProjectInfoPage.cpp b/clientgui/ProjectInfoPage.cpp index 9698dba44c..a5c65135b4 100644 --- a/clientgui/ProjectInfoPage.cpp +++ b/clientgui/ProjectInfoPage.cpp @@ -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 );