From 3e048485f9c56066f347bc0e6a06056870847056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 9 Oct 2001 11:50:55 +0000 Subject: [PATCH] Add entry parameter to HList.item_cget. Fixes bug #466981. --- Lib/lib-tk/Tix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/lib-tk/Tix.py b/Lib/lib-tk/Tix.py index 9980941b0d2..937d36fad26 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: