Oops, put the WXUNUSED in the wrong spot.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@45737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-05-01 19:45:38 +00:00
parent 9e20de35b1
commit 94384f859f

View File

@@ -6903,13 +6903,13 @@ void wxGrid::Refresh(bool eraseb, const wxRect* rect)
}
}
void wxGrid::OnSize( wxSizeEvent& event )
void wxGrid::OnSize( wxSizeEvent& WXUNUSED(event) )
{
// update our children window positions and scrollbars
CalcDimensions();
}
void wxGrid::OnKeyDown( wxKeyEvent& WXUNUSED(event) )
void wxGrid::OnKeyDown( wxKeyEvent& event )
{
if ( m_inOnKeyDown )
{