--- a/src/eric7/Project/QuickFindFileDialog.py Wed Nov 16 10:10:06 2022 +0100 +++ b/src/eric7/Project/QuickFindFileDialog.py Wed Nov 16 10:53:40 2022 +0100 @@ -145,6 +145,7 @@ @yield set of files in our project @ytype str """ + # TODO: change this to use fileType for typ in [ "SOURCES", "FORMS", @@ -154,7 +155,7 @@ "TRANSLATIONS", "OTHERS", ]: - entries = self.project.pdata.get(typ) + entries = self.project.getProjectData(dataKey=typ, default=[]) yield from entries[:] def __sortedMatches(self, items, searchTerm):