diff -r 85a83e4e7f18 -r fd172973428e eric7/HelpViewer/HelpViewerImpl.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/eric7/HelpViewer/HelpViewerImpl.py Thu Oct 07 20:22:02 2021 +0200 @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2021 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing the help viewer base class. +""" + +from PyQt6.QtCore import QObject + + +class HelpViewerImpl(QObject): + """ + Class implementing the help viewer base class. + """ + def __init__(self, parent=None): + """ + Constructor + + @param parent reference to the parent widget + @type QWidget + """ + super().__init__(parent)