Project/AddFileDialog.py

changeset 1330
da34ee6d1d30
parent 1131
7781e396c903
child 1335
60a540cabd68
equal deleted inserted replaced
1329:ac21bb9cf8b9 1330:da34ee6d1d30
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())

eric ide

mercurial