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 ) |