diff --git a/checkin_notes b/checkin_notes index efaedd7b42..f3979d1a22 100755 --- a/checkin_notes +++ b/checkin_notes @@ -7345,6 +7345,7 @@ David 17 July 2007 Charlie 17 July 2007 - Manager GridCtrl: Don't save/restore width of hidden/invisible columns. + Fix Compile error on some platforms. clientgui/ BOINCGridCtrl.cpp diff --git a/clientgui/ViewWorkGrid.cpp b/clientgui/ViewWorkGrid.cpp index df4aa6ccdd..fb155bb81b 100644 --- a/clientgui/ViewWorkGrid.cpp +++ b/clientgui/ViewWorkGrid.cpp @@ -848,7 +848,7 @@ void CViewWorkGrid::OnListRender( wxTimerEvent& WXUNUSED(event) ) { if (rowCountChanged) { for(int iRow = 0; iRow < iMax; iRow++) { - m_pGridPane->SetCellValue(iRow, COLUMN_RESULTS_INDEX, strBuffer.Format("%d", iRow)); + m_pGridPane->SetCellValue(iRow, COLUMN_RESULTS_INDEX, strBuffer.Format(wxT("%d"), iRow)); } }