62 projectFile = E5FileDialog.getOpenFileName( |
62 projectFile = E5FileDialog.getOpenFileName( |
63 self, |
63 self, |
64 self.trUtf8("Add Project"), |
64 self.trUtf8("Add Project"), |
65 startdir, |
65 startdir, |
66 self.trUtf8("Project Files (*.e4p)")) |
66 self.trUtf8("Project Files (*.e4p)")) |
67 |
67 |
68 if projectFile: |
68 if projectFile: |
69 self.filenameEdit.setText( |
69 self.filenameEdit.setText( |
70 Utilities.toNativeSeparators(projectFile)) |
70 Utilities.toNativeSeparators(projectFile)) |
71 |
71 |
72 def getData(self): |
72 def getData(self): |
73 """ |
73 """ |
74 Public slot to retrieve the dialogs data. |
74 Public slot to retrieve the dialogs data. |
75 |
75 |