mirror of
https://github.com/python/cpython.git
synced 2025-11-14 07:49:28 +00:00
Add entry parameter to HList.item_cget. Fixes bug #466981.
This commit is contained in:
parent
0eb2a6e974
commit
3e048485f9
1 changed files with 2 additions and 2 deletions
|
|
@ -730,8 +730,8 @@ class HList(TixWidget):
|
||||||
c = self.tk.call(self._w, 'info', 'selection')
|
c = self.tk.call(self._w, 'info', 'selection')
|
||||||
return self.tk.splitlist(c)
|
return self.tk.splitlist(c)
|
||||||
|
|
||||||
def item_cget(self, col, opt):
|
def item_cget(self, entry, col, opt):
|
||||||
return self.tk.call(self._w, 'item', 'cget', col, opt)
|
return self.tk.call(self._w, 'item', 'cget', entry, col, opt)
|
||||||
|
|
||||||
def item_configure(self, entry, col, cnf={}, **kw):
|
def item_configure(self, entry, col, cnf={}, **kw):
|
||||||
if cnf is None:
|
if cnf is None:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue