src/eric7/Preferences/ConfigurationPages/LogViewerPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10069
435cc5875135
child 10439
21c28b0f9e41
equal deleted inserted replaced
10427:3733e2b23cf7 10428:a071d4065202
23 23
24 def __init__(self, parent=None): 24 def __init__(self, parent=None):
25 """ 25 """
26 Constructor 26 Constructor
27 27
28 @param parent reference to the parent widget (QWidget) 28 @param parent reference to the parent widget
29 @type QWidget
29 """ 30 """
30 super().__init__() 31 super().__init__()
31 self.setupUi(self) 32 self.setupUi(self)
32 self.setObjectName("LogViewerPage") 33 self.setObjectName("LogViewerPage")
33 34
95 def create(dlg): # noqa: U100 96 def create(dlg): # noqa: U100
96 """ 97 """
97 Module function to create the configuration page. 98 Module function to create the configuration page.
98 99
99 @param dlg reference to the configuration dialog 100 @param dlg reference to the configuration dialog
100 @return reference to the instantiated page (ConfigurationPageBase) 101 @type ConfigurationDialog
102 @return reference to the instantiated page
103 @rtype ConfigurationPageBase
101 """ 104 """
102 page = LogViewerPage() 105 page = LogViewerPage()
103 return page 106 return page

eric ide

mercurial