controls/LocationCellEditor.py
branchwxPython4
changeset 3305 ca11385ea5e9
parent 3303 0ffb41625592
child 3546 ee51d1deadfd
--- a/controls/LocationCellEditor.py	Sun Sep 05 05:01:34 2021 +0200
+++ b/controls/LocationCellEditor.py	Sun Sep 05 05:03:36 2021 +0200
@@ -150,12 +150,12 @@
         self.Location.SetFocus()
 
 
-class LocationCellEditor(wx.grid.PyGridCellEditor):
+class LocationCellEditor(wx.grid.GridCellEditor):
     '''
     Grid cell editor that uses LocationCellControl to display a browse button.
     '''
     def __init__(self, table, controller):
-        wx.grid.PyGridCellEditor.__init__(self)
+        wx.grid.GridCellEditor.__init__(self)
 
         self.Table = table
         self.Controller = controller