34 @pyqtSlot() |
34 @pyqtSlot() |
35 def on_fileButton_clicked(self): |
35 def on_fileButton_clicked(self): |
36 """ |
36 """ |
37 Private slot called by pressing the file selection button. |
37 Private slot called by pressing the file selection button. |
38 """ |
38 """ |
39 fn = QFileDialog.getOpenFileName(\ |
39 fn = QFileDialog.getOpenFileName( |
40 self, |
40 self, |
41 self.trUtf8("Select file for property"), |
41 self.trUtf8("Select file for property"), |
42 self.propFileEdit.text(), |
42 self.propFileEdit.text(), |
43 "") |
43 "") |
44 |
44 |