eric6/Project/QuickFindFileDialog.py

changeset 7988
c4c17121eff8
parent 7923
91e843545d9a
child 8143
2c730d5fd177
equal deleted inserted replaced
7987:e8eb8370ea94 7988:c4c17121eff8
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[:]:

eric ide

mercurial