Charlie 17 July 2007

Manager GridCtrl: Fix Compile error on some platforms.

svn path=/trunk/boinc/; revision=13176
This commit is contained in:
Charlie Fenton 2007-07-17 23:12:55 +00:00
parent 814e92815d
commit 71502f5700
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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));
}
}