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 |