mirror of https://github.com/python/cpython
Mark the "radio" option of Tix.CheckList as static.
This commit is contained in:
parent
6c823f8720
commit
57f9b7298a
|
@ -1548,7 +1548,7 @@ class CheckList(TixWidget):
|
||||||
# FIXME: It should inherit -superclass tixTree
|
# FIXME: It should inherit -superclass tixTree
|
||||||
def __init__(self, master=None, cnf={}, **kw):
|
def __init__(self, master=None, cnf={}, **kw):
|
||||||
TixWidget.__init__(self, master, 'tixCheckList',
|
TixWidget.__init__(self, master, 'tixCheckList',
|
||||||
['options'], cnf, kw)
|
['options', 'radio'], cnf, kw)
|
||||||
self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
|
self.subwidget_list['hlist'] = _dummyHList(self, 'hlist')
|
||||||
self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
|
self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb')
|
||||||
self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
|
self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb')
|
||||||
|
|
Loading…
Reference in New Issue