41 """ |
41 """ |
42 Private slot called by pressing the file selection button. |
42 Private slot called by pressing the file selection button. |
43 """ |
43 """ |
44 fn = E5FileDialog.getOpenFileName( |
44 fn = E5FileDialog.getOpenFileName( |
45 self, |
45 self, |
46 self.trUtf8("Select file for property"), |
46 self.tr("Select file for property"), |
47 self.propFileEdit.text(), |
47 self.propFileEdit.text(), |
48 "") |
48 "") |
49 |
49 |
50 if fn: |
50 if fn: |
51 self.propFileEdit.setText(Utilities.toNativeSeparators(fn)) |
51 self.propFileEdit.setText(Utilities.toNativeSeparators(fn)) |