Fix event typename

This commit is contained in:
Robin Dunn
2017-11-17 22:00:38 -08:00
parent b36669c7c9
commit d4814517fd
2 changed files with 6 additions and 1 deletions

View File

@@ -193,7 +193,7 @@ class CSheet(wx.grid.Grid):
self.Bind(wx.grid.EVT_GRID_RANGE_SELECT, self.OnRangeSelect)
self.Bind(wx.grid.EVT_GRID_ROW_SIZE, self.OnRowSize)
self.Bind(wx.grid.EVT_GRID_COL_SIZE, self.OnColSize)
self.Bind(wx.grid.EVT_GRID_CELL_CHANGE, self.OnCellChange)
self.Bind(wx.grid.EVT_GRID_CELL_CHANGED, self.OnCellChange)
self.Bind(wx.grid.EVT_GRID_SELECT_CELL, self.OnGridSelectCell)
def OnGridSelectCell(self, event):