X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..3a04f1432d64cb06c275cfd3320490a0c350db7a:/wxPython/wx/lib/mixins/grid.py diff --git a/wxPython/wx/lib/mixins/grid.py b/wxPython/wx/lib/mixins/grid.py index b6040111b7..a6d40673d5 100644 --- a/wxPython/wx/lib/mixins/grid.py +++ b/wxPython/wx/lib/mixins/grid.py @@ -9,8 +9,14 @@ # Copyright: (c) 2001 by Total Control Software # Licence: wxWindows license #---------------------------------------------------------------------------- +# 12/14/2003 - Jeff Grimmett (grimmtooth@softhome.net) +# +# o 2.5 compatability update. +# o Untested +# -from wxPython import wx, grid +import wx +import wx.grid #---------------------------------------------------------------------------- @@ -25,8 +31,8 @@ class wxGridAutoEditMixin: def __init__(self): self.__enableEdit = 0 - wx.EVT_IDLE(self, self.__OnIdle) - grid.EVT_GRID_SELECT_CELL(self, self.__OnSelectCell) + self.Bind(wx.EVT_IDLE, self.__OnIdle) + self.Bind(wx.grid.EVT_GRID_SELECT_CELL, self.__OnSelectCell) def __OnIdle(self, evt):