179 |
179 |
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 (self.sourceFileEdit.text().split(os.pathsep), |
184 return ( |
185 self.targetDirEdit.text(), self.sourcecodeCheckBox.isChecked()) |
185 Utilities.toNativeSeparators(self.sourceFileEdit.text().split(os.pathsep)), |
|
186 Utilities.toNativeSeparators(self.targetDirEdit.text()), |
|
187 self.sourcecodeCheckBox.isChecked()) |