81 for language in self.parameters['languages']: |
81 for language in self.parameters['languages']: |
82 if language == "Python": |
82 if language == "Python": |
83 # convert Python to the more specific Python3 |
83 # convert Python to the more specific Python3 |
84 language = "Python3" |
84 language = "Python3" |
85 items = self.languagesList.findItems( |
85 items = self.languagesList.findItems( |
86 language, Qt.MatchFlags(Qt.MatchFlag.MatchExactly)) |
86 language, Qt.MatchFlag.MatchExactly) |
87 items and items[0].setSelected(True) |
87 items and items[0].setSelected(True) |
88 |
88 |
89 def __initializeDefaults(self): |
89 def __initializeDefaults(self): |
90 """ |
90 """ |
91 Private method to set the default values. |
91 Private method to set the default values. |