91 @pyqtSlot(QAbstractButton) |
91 @pyqtSlot(QAbstractButton) |
92 def on_buttonBox_clicked(self, button): |
92 def on_buttonBox_clicked(self, button): |
93 """ |
93 """ |
94 Private slot called by a button of the button box clicked. |
94 Private slot called by a button of the button box clicked. |
95 |
95 |
96 @param button button that was clicked (QAbstractButton) |
96 @param button button that was clicked |
|
97 @type QAbstractButton |
97 """ |
98 """ |
98 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
99 if button == self.buttonBox.button(QDialogButtonBox.StandardButton.Close): |
99 self.close() |
100 self.close() |
100 |
101 |
101 @pyqtSlot() |
102 @pyqtSlot() |