eric6/Project/NewDialogClassDialog.py

changeset 7265
0665c4d509c9
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7264:bedbe458d792 7265:0665c4d509c9
83 """ 83 """
84 Public method to retrieve the data entered into the dialog. 84 Public method to retrieve the data entered into the dialog.
85 85
86 @return tuple giving the classname (string) and the file name (string) 86 @return tuple giving the classname (string) and the file name (string)
87 """ 87 """
88 return self.classnameEdit.text(), \ 88 return (
89 self.classnameEdit.text(),
89 os.path.join(self.pathnamePicker.text(), 90 os.path.join(self.pathnamePicker.text(),
90 self.filenameEdit.text()) 91 self.filenameEdit.text())
92 )

eric ide

mercurial