161 @pyqtSlot() |
162 @pyqtSlot() |
162 def on_fileButton_clicked(self): |
163 def on_fileButton_clicked(self): |
163 """ |
164 """ |
164 Private slot to handle the file selection via a file selection dialog. |
165 Private slot to handle the file selection via a file selection dialog. |
165 """ |
166 """ |
166 bookmark = QFileDialog.getOpenFileName( |
167 bookmark = E5FileDialog.getOpenFileName() |
167 options = QFileDialog.DontUseNativeDialog) |
|
168 if bookmark: |
168 if bookmark: |
169 bookmark = Utilities.toNativeSeparators(bookmark) |
169 bookmark = Utilities.toNativeSeparators(bookmark) |
170 self.fileEdit.setText(bookmark) |
170 self.fileEdit.setText(bookmark) |
171 |
171 |
172 def getBookmarkedFiles(self): |
172 def getBookmarkedFiles(self): |