mirror of https://github.com/BOINC/boinc.git
Charlie 17 July 2007
Manager GridCtrl: Fix Compile error on some platforms. svn path=/trunk/boinc/; revision=13176
This commit is contained in:
parent
814e92815d
commit
71502f5700
|
@ -7345,6 +7345,7 @@ David 17 July 2007
|
||||||
|
|
||||||
Charlie 17 July 2007
|
Charlie 17 July 2007
|
||||||
- Manager GridCtrl: Don't save/restore width of hidden/invisible columns.
|
- Manager GridCtrl: Don't save/restore width of hidden/invisible columns.
|
||||||
|
Fix Compile error on some platforms.
|
||||||
|
|
||||||
clientgui/
|
clientgui/
|
||||||
BOINCGridCtrl.cpp
|
BOINCGridCtrl.cpp
|
||||||
|
|
|
@ -848,7 +848,7 @@ void CViewWorkGrid::OnListRender( wxTimerEvent& WXUNUSED(event) ) {
|
||||||
|
|
||||||
if (rowCountChanged) {
|
if (rowCountChanged) {
|
||||||
for(int iRow = 0; iRow < iMax; iRow++) {
|
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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue