Helpviewer/UrlBar/StackedUrlBar.py

branch
Py2 comp.
changeset 3060
5883ce99ee12
parent 3057
10516539f238
parent 3034
7ce719013078
child 3145
a9de05d4a22f
equal deleted inserted replaced
3058:0a02c433f52d 3060:5883ce99ee12
62 """ 62 """
63 Public method to get a list of references to all url bars. 63 Public method to get a list of references to all url bars.
64 64
65 @return list of references to url bars (list of UrlBar) 65 @return list of references to url bars (list of UrlBar)
66 """ 66 """
67 l = [] 67 li = []
68 for index in range(self.count()): 68 for index in range(self.count()):
69 l.append(self.widget(index)) 69 li.append(self.widget(index))
70 return l 70 return li

eric ide

mercurial