From: Martin v. Löwis Date: Tue, 9 Oct 2001 11:50:55 +0000 (+0000) Subject: Add entry parameter to HList.item_cget. Fixes bug #466981. X-Git-Tag: v2.2.1c1~1385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3e048485f9c56066f347bc0e6a06056870847056;p=python Add entry parameter to HList.item_cget. Fixes bug #466981. --- diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index 9980941b0d..937d36fad2 100755 --- a/Lib/lib-tk/Tix.py +++ b/Lib/lib-tk/Tix.py @@ -730,8 +730,8 @@ class HList(TixWidget): c = self.tk.call(self._w, 'info', 'selection') return self.tk.splitlist(c) - def item_cget(self, col, opt): - return self.tk.call(self._w, 'item', 'cget', col, opt) + def item_cget(self, entry, col, opt): + return self.tk.call(self._w, 'item', 'cget', entry, col, opt) def item_configure(self, entry, col, cnf={}, **kw): if cnf is None: