108 @pyqtSlot() |
108 @pyqtSlot() |
109 def on_fileButton_clicked(self): |
109 def on_fileButton_clicked(self): |
110 """ |
110 """ |
111 Private slot to select a file via a file selection dialog. |
111 Private slot to select a file via a file selection dialog. |
112 """ |
112 """ |
113 file = QFileDialog.getOpenFileName(\ |
113 file = QFileDialog.getOpenFileName( |
114 self, |
114 self, |
115 self.trUtf8("Select filename of the breakpoint"), |
115 self.trUtf8("Select filename of the breakpoint"), |
116 self.filenameCombo.currentText(), |
116 self.filenameCombo.currentText(), |
117 "") |
117 "") |
118 |
118 |