Project/AddFileDialog.py

branch
5_1_x
changeset 1331
5dd594d4466f
parent 882
34b86be88bf0
child 1336
d8e473d7e443
equal deleted inserted replaced
1328:deda60e0670a 1331:5dd594d4466f
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())

eric ide

mercurial