133 |
133 |
134 def __generateLocations(self): |
134 def __generateLocations(self): |
135 """ |
135 """ |
136 Private method to generate a set of locations that can be searched. |
136 Private method to generate a set of locations that can be searched. |
137 |
137 |
138 @return yields set of files in our project... |
138 @yield set of files in our project |
139 @rtype str |
139 @ytype str |
140 """ |
140 """ |
141 for typ in ["SOURCES", "FORMS", "INTERFACES", "PROTOCOLS", "RESOURCES", |
141 for typ in ["SOURCES", "FORMS", "INTERFACES", "PROTOCOLS", "RESOURCES", |
142 "TRANSLATIONS", "OTHERS"]: |
142 "TRANSLATIONS", "OTHERS"]: |
143 entries = self.project.pdata.get(typ) |
143 entries = self.project.pdata.get(typ) |
144 for entry in entries[:]: |
144 for entry in entries[:]: |