eric6/Project/AddDirectoryDialog.py

changeset 7265
0665c4d509c9
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7264:bedbe458d792 7265:0665c4d509c9
119 119
120 @return tuple of four values (string, string, string, boolean) giving 120 @return tuple of four values (string, string, string, boolean) giving
121 the selected file type, the source and target directory and 121 the selected file type, the source and target directory and
122 a flag indicating a recursive add 122 a flag indicating a recursive add
123 """ 123 """
124 filetype = \ 124 filetype = self.filterComboBox.itemData(
125 self.filterComboBox.itemData(self.filterComboBox.currentIndex()) 125 self.filterComboBox.currentIndex())
126 return ( 126 return (
127 filetype, 127 filetype,
128 self.sourceDirPicker.text(), 128 self.sourceDirPicker.text(),
129 self.targetDirPicker.text(), 129 self.targetDirPicker.text(),
130 self.recursiveCheckBox.isChecked()) 130 self.recursiveCheckBox.isChecked())

eric ide

mercurial