controls/LocationCellEditor.py
changeset 1836 d42b6cf00fa6
parent 1768 691083b5682a
child 1881 091005ec69c4
equal deleted inserted replaced
1835:7533061a6d82 1836:d42b6cf00fa6
    32     '''
    32     '''
    33     Custom cell editor control with a text box and a button that launches
    33     Custom cell editor control with a text box and a button that launches
    34     the BrowseLocationsDialog.
    34     the BrowseLocationsDialog.
    35     '''
    35     '''
    36     def __init__(self, parent):
    36     def __init__(self, parent):
    37         wx.Control.__init__(self, parent)
    37         wx.PyControl.__init__(self, parent)
    38 
    38 
    39         main_sizer = wx.FlexGridSizer(cols=2, hgap=0, rows=1, vgap=0)
    39         main_sizer = wx.FlexGridSizer(cols=2, hgap=0, rows=1, vgap=0)
    40         main_sizer.AddGrowableCol(0)
    40         main_sizer.AddGrowableCol(0)
    41         main_sizer.AddGrowableRow(0)
    41         main_sizer.AddGrowableRow(0)
    42 
    42