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