Helpviewer/UrlBar/StackedUrlBar.py

changeset 3034
7ce719013078
parent 2954
bf0215fe12d1
child 3060
5883ce99ee12
child 3160
209a07d7e401
equal deleted inserted replaced
3033:58fe260e7469 3034:7ce719013078
60 """ 60 """
61 Public method to get a list of references to all url bars. 61 Public method to get a list of references to all url bars.
62 62
63 @return list of references to url bars (list of UrlBar) 63 @return list of references to url bars (list of UrlBar)
64 """ 64 """
65 l = [] 65 li = []
66 for index in range(self.count()): 66 for index in range(self.count()):
67 l.append(self.widget(index)) 67 li.append(self.widget(index))
68 return l 68 return li

eric ide

mercurial