2596 """ |
2596 """ |
2597 Class method to get a reference to the help engine. |
2597 Class method to get a reference to the help engine. |
2598 |
2598 |
2599 @return reference to the help engine (QHelpEngine) |
2599 @return reference to the help engine (QHelpEngine) |
2600 """ |
2600 """ |
2601 if cls.useQtHelp: |
2601 if cls._useQtHelp: |
2602 if cls._helpEngine is None: |
2602 if cls._helpEngine is None: |
2603 cls._helpEngine = QHelpEngine( |
2603 cls._helpEngine = QHelpEngine( |
2604 HelpWindow.getQtHelpCollectionFileName()) |
2604 HelpWindow.getQtHelpCollectionFileName()) |
2605 return cls._helpEngine |
2605 return cls._helpEngine |
2606 else: |
2606 else: |