498 setOn = False |
498 setOn = False |
499 |
499 |
500 self.__okButton.setEnabled(setOn) |
500 self.__okButton.setEnabled(setOn) |
501 |
501 |
502 @pyqtSlot(bool) |
502 @pyqtSlot(bool) |
503 def on_qtHelpGroup_toggled(self, enabled): |
503 def on_qtHelpGroup_toggled(self, _enabled): |
504 """ |
504 """ |
505 Private slot to toggle the generation of QtHelp files. |
505 Private slot to toggle the generation of QtHelp files. |
506 |
506 |
507 @param enabled flag indicating the state |
507 @param _enabled flag indicating the state (unused) |
508 @type bool |
508 @type bool |
509 """ |
509 """ |
510 self.__checkQtHelpOptions() |
510 self.__checkQtHelpOptions() |
511 |
511 |
512 @pyqtSlot(str) |
512 @pyqtSlot(str) |
513 def on_qtHelpNamespaceEdit_textChanged(self, txt): |
513 def on_qtHelpNamespaceEdit_textChanged(self, _txt): |
514 """ |
514 """ |
515 Private slot to check the namespace. |
515 Private slot to check the namespace. |
516 |
516 |
517 @param txt text of the line edit |
517 @param _txt text of the line edit (unused) |
518 @type str |
518 @type str |
519 """ |
519 """ |
520 self.__checkQtHelpOptions() |
520 self.__checkQtHelpOptions() |
521 |
521 |
522 @pyqtSlot(str) |
522 @pyqtSlot(str) |
523 def on_qtHelpFolderEdit_textChanged(self, txt): |
523 def on_qtHelpFolderEdit_textChanged(self, _txt): |
524 """ |
524 """ |
525 Private slot to check the virtual folder. |
525 Private slot to check the virtual folder. |
526 |
526 |
527 @param txt text of the line edit |
527 @param _txt text of the line edit (unused) |
528 @type str |
528 @type str |
529 """ |
529 """ |
530 self.__checkQtHelpOptions() |
530 self.__checkQtHelpOptions() |
531 |
531 |
532 @pyqtSlot(str) |
532 @pyqtSlot(str) |
533 def on_qtHelpTitleEdit_textChanged(self, txt): |
533 def on_qtHelpTitleEdit_textChanged(self, _txt): |
534 """ |
534 """ |
535 Private slot to check the title. |
535 Private slot to check the title. |
536 |
536 |
537 @param txt text of the line edit |
537 @param _txt text of the line edit (unused) |
538 @type str |
538 @type str |
539 """ |
539 """ |
540 self.__checkQtHelpOptions() |
540 self.__checkQtHelpOptions() |
541 |
541 |
542 @pyqtSlot(str) |
542 @pyqtSlot(str) |