--- a/controls/DurationCellEditor.py Sun Sep 05 05:01:34 2021 +0200
+++ b/controls/DurationCellEditor.py Sun Sep 05 05:03:36 2021 +0200
@@ -98,12 +98,12 @@
-class DurationCellEditor(wx.grid.PyGridCellEditor):
+class DurationCellEditor(wx.grid.GridCellEditor): Grid cell editor that uses DurationCellControl to display an edit button.
def __init__(self, table, colname):
- wx.grid.PyGridCellEditor.__init__(self)
+ wx.grid.GridCellEditor.__init__(self) --- 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 @@
-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.Controller = controller