Commit 9d6da074 authored by Martin v. Löwis's avatar Martin v. Löwis

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

parent 69e6182c
......@@ -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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment