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