907 |
907 |
908 dlg = IdlCompilerOptionsDialog( |
908 dlg = IdlCompilerOptionsDialog( |
909 params["IncludeDirs"][:], |
909 params["IncludeDirs"][:], |
910 params["DefinedNames"][:], |
910 params["DefinedNames"][:], |
911 params["UndefinedNames"][:], |
911 params["UndefinedNames"][:], |
912 self.project, |
912 project=self.project, |
913 self, |
913 parent=self, |
914 ) |
914 ) |
915 if dlg.exec() == QDialog.DialogCode.Accepted: |
915 if dlg.exec() == QDialog.DialogCode.Accepted: |
916 include, defined, undefined = dlg.getData() |
916 include, defined, undefined = dlg.getData() |
917 if include != params["IncludeDirs"]: |
917 if include != params["IncludeDirs"]: |
918 params["IncludeDirs"] = include[:] |
918 params["IncludeDirs"] = include[:] |