25 @param compiler name of the uic compiler executable |
25 @param compiler name of the uic compiler executable |
26 @type str |
26 @type str |
27 @param parent reference to the parent widget |
27 @param parent reference to the parent widget |
28 @type QWidget |
28 @type QWidget |
29 """ |
29 """ |
30 super(UicCompilerOptionsDialog, self).__init__(parent) |
30 super().__init__(parent) |
31 self.setupUi(self) |
31 self.setupUi(self) |
32 |
32 |
33 self.packageEdit.setText(compilerOptions["Package"]) |
33 self.packageEdit.setText(compilerOptions["Package"]) |
34 self.packageRootEdit.setText(compilerOptions["PackagesRoot"]) |
34 self.packageRootEdit.setText(compilerOptions["PackagesRoot"]) |
35 self.suffixEdit.setText(compilerOptions["RcSuffix"]) |
35 self.suffixEdit.setText(compilerOptions["RcSuffix"]) |