Compile fix to grid.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7209 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-04-18 14:00:00 +00:00
parent c3d12e0433
commit 9bafeae845
2 changed files with 3 additions and 3 deletions

View File

@@ -5952,7 +5952,7 @@ bool wxGrid::IsCellEditControlDisplayed() const
int row = m_currentCellCoords.GetRow();
int col = m_currentCellCoords.GetCol();
wxGridCellAttr* attr = GetCellAttr(row, col);
wxGridCellEditor* editor = attr->GetEditor(this, row, col);
wxGridCellEditor* editor = attr->GetEditor((wxGrid*) this, row, col);
if ( editor && editor->IsCreated() )
{
wxWindow *control = editor->GetControl();