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 |