summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilherme Polo <ggpolo@gmail.com>2009-08-18 13:33:30 (GMT)
committerGuilherme Polo <ggpolo@gmail.com>2009-08-18 13:33:30 (GMT)
commit57f9b7298afc12da0717531216e2990e6e2ffc20 (patch)
tree602bbd290881ce5b8241c2653ffbac73bef8d3bc
parent6c823f8720d56ce687e9c3c871ea69d263398cfe (diff)
downloadcpython-57f9b7298afc12da0717531216e2990e6e2ffc20.zip
cpython-57f9b7298afc12da0717531216e2990e6e2ffc20.tar.gz
cpython-57f9b7298afc12da0717531216e2990e6e2ffc20.tar.bz2
Mark the "radio" option of Tix.CheckList as static.
-rwxr-xr-xLib/lib-tk/Tix.py2
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')