diff options
author | Guilherme Polo <ggpolo@gmail.com> | 2009-08-18 13:33:30 (GMT) |
---|---|---|
committer | Guilherme Polo <ggpolo@gmail.com> | 2009-08-18 13:33:30 (GMT) |
commit | 57f9b7298afc12da0717531216e2990e6e2ffc20 (patch) | |
tree | 602bbd290881ce5b8241c2653ffbac73bef8d3bc | |
parent | 6c823f8720d56ce687e9c3c871ea69d263398cfe (diff) | |
download | cpython-57f9b7298afc12da0717531216e2990e6e2ffc20.zip cpython-57f9b7298afc12da0717531216e2990e6e2ffc20.tar.gz cpython-57f9b7298afc12da0717531216e2990e6e2ffc20.tar.bz2 |
Mark the "radio" option of Tix.CheckList as static.
-rwxr-xr-x | Lib/lib-tk/Tix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index d2ede36..91b27f5 100755 --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -1548,7 +1548,7 @@ class CheckList(TixWidget): # FIXME: It should inherit -superclass tixTree def __init__(self, master=None, cnf={}, **kw): TixWidget.__init__(self, master, 'tixCheckList', - ['options'], cnf, kw) + ['options', 'radio'], cnf, kw) self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |