]> granicus.if.org Git - python/commitdiff
Add entry parameter to HList.item_cget. Fixes bug #466981.
authorMartin v. Löwis <martin@v.loewis.de>
Tue, 9 Oct 2001 11:50:55 +0000 (11:50 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Tue, 9 Oct 2001 11:50:55 +0000 (11:50 +0000)
Lib/lib-tk/Tix.py

index 9980941b0d2eb0220337d61ef07867e9882c9702..937d36fad263cae1d6242baf371c38bca84d92c7 100755 (executable)
@@ -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: