src/eric7/Project/Project.py

branch
eric7
changeset 9612
93b496cc3c88
parent 9610
b45bccbdf331
child 9624
b47dfa7a137d
equal deleted inserted replaced
9611:af03537d56b2 9612:93b496cc3c88
875 fileTypesDict["*.ts"] = "TRANSLATIONS" 875 fileTypesDict["*.ts"] = "TRANSLATIONS"
876 fileTypesDict["*.qm"] = "TRANSLATIONS" 876 fileTypesDict["*.qm"] = "TRANSLATIONS"
877 877
878 # File categories handled by activated plugin project browsers 878 # File categories handled by activated plugin project browsers
879 for fileCategory in [ 879 for fileCategory in [
880 f for f in self.__fileCategoriesRepository.keys() if f not in [ 880 f
881 "SOURCES", "FORMS", "RESOURCES", "TRANSLATIONS", "OTHERS" 881 for f in self.__fileCategoriesRepository.keys()
882 ] 882 if f not in ["SOURCES", "FORMS", "RESOURCES", "TRANSLATIONS", "OTHERS"]
883 ]: 883 ]:
884 for ext in self.__fileCategoriesRepository[ 884 for ext in self.__fileCategoriesRepository[
885 fileCategory 885 fileCategory
886 ].fileCategoryExtensions: 886 ].fileCategoryExtensions:
887 fileTypesDict[ext] = fileCategory 887 fileTypesDict[ext] = fileCategory
6675 self.__makeProcess.finished.disconnect() 6675 self.__makeProcess.finished.disconnect()
6676 self.__makeProcess.deleteLater() 6676 self.__makeProcess.deleteLater()
6677 self.__makeProcess = None 6677 self.__makeProcess = None
6678 6678
6679 ######################################################################### 6679 #########################################################################
6680 ## Below are methods implementing some 'IDL' support functions
6681 #########################################################################
6682
6683 def hasDefaultIdlCompilerParameters(self):
6684 """
6685 Public method to test, if the project contains the default IDL compiler
6686 parameters.
6687
6688 @return flag indicating default parameter set
6689 @rtype bool
6690 """
6691 return self.__pdata["IDLPARAMS"] == {
6692 "IncludeDirs": [],
6693 "DefinedNames": [],
6694 "UndefinedNames": [],
6695 }
6696
6697 #########################################################################
6698 ## Below are methods implementing some 'UIC' support functions 6680 ## Below are methods implementing some 'UIC' support functions
6699 ######################################################################### 6681 #########################################################################
6700 6682
6701 def hasDefaultUicCompilerParameters(self): 6683 def hasDefaultUicCompilerParameters(self):
6702 """ 6684 """

eric ide

mercurial