186 |
186 |
187 @pyqtSlot(QAbstractButton) |
187 @pyqtSlot(QAbstractButton) |
188 def on_buttonBox_clicked(self, button): |
188 def on_buttonBox_clicked(self, button): |
189 """ |
189 """ |
190 Private slot to handle the click of a button of the button box. |
190 Private slot to handle the click of a button of the button box. |
|
191 |
|
192 @param button reference to the button pressed (QAbstractButton) |
191 """ |
193 """ |
192 if button == self.__backButton: |
194 if button == self.__backButton: |
193 self.__currentIndex -= 1 |
195 self.__currentIndex -= 1 |
194 self.__selectPage() |
196 self.__selectPage() |
195 elif button == self.__nextButton: |
197 elif button == self.__nextButton: |