180 |
180 |
181 @return tuple of three values (list of string, string, boolean) giving the |
181 @return tuple of three values (list of string, string, boolean) giving the |
182 source files, the target directory and a flag telling, whether |
182 source files, the target directory and a flag telling, whether |
183 the files shall be added as source code |
183 the files shall be added as source code |
184 """ |
184 """ |
185 return (self.sourceFileEdit.text().split(os.pathsep), |
185 return ( |
186 self.targetDirEdit.text(), self.sourcecodeCheckBox.isChecked()) |
186 Utilities.toNativeSeparators(self.sourceFileEdit.text().split(os.pathsep)), |
|
187 Utilities.toNativeSeparators(self.targetDirEdit.text()), |
|
188 self.sourcecodeCheckBox.isChecked()) |