Project/QuickFindFileDialog.py

changeset 5986
1e78a1aa438b
parent 5389
9b1c800daff3
child 6048
82ad8ec9548c
equal deleted inserted replaced
5984:bc7ec03158fc 5986:1e78a1aa438b
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

eric ide

mercurial