Add entry parameter to HList.item_cget. Fixes bug #466981.

This commit is contained in:
Martin v. Löwis 2001-10-09 11:50:55 +00:00
parent 0eb2a6e974
commit 3e048485f9
1 changed files with 2 additions and 2 deletions

View File

@ -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: