--- a/src/eric7/EricXML/ProjectReader.py Mon Dec 19 14:09:57 2022 +0100 +++ b/src/eric7/EricXML/ProjectReader.py Mon Dec 19 17:50:02 2022 +0100 @@ -38,7 +38,10 @@ """ Public method to read and parse the XML document. """ - fileCategoryTags = [s.capitalize() for s in self.project.getFileCategories()] + fileCategoryTags = [ + s.capitalize() for s in self.project.getFileCategories() + ] + ["Interfaces", "Protocols"] + # The XML project files always included these. while not self.atEnd(): self.readNext()