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:
		@@ -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();
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user