Project/AddFileDialog.py

branch
5_1_x
changeset 1336
d8e473d7e443
parent 1331
5dd594d4466f
child 1510
e75ecf2bd9dd
equal deleted inserted replaced
1334:e6cbd342862d 1336:d8e473d7e443
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())

eric ide

mercurial