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