Eliminate POD warning/error

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42934 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2006-11-02 09:23:52 +00:00
parent 5f547a582e
commit 740325df7f

View File

@ -968,8 +968,10 @@ void GridFrame::OnCellValueChanged( wxGridEvent& ev )
int row = ev.GetRow(),
col = ev.GetCol();
wxString value = grid->GetCellValue(row, col);
wxLogMessage(_T("Value changed for cell at row %d, col %d: now \"%s\""),
row, col, grid->GetCellValue(row, col));
row, col, (const wxChar*) value);
ev.Skip();
}