src/eric7/Preferences/ConfigurationPages/EditorPropertiesPage.py

branch
eric7
changeset 10428
a071d4065202
parent 10373
093dcebe5ecb
child 10439
21c28b0f9e41
equal deleted inserted replaced
10427:3733e2b23cf7 10428:a071d4065202
23 def __init__(self, lexers): 23 def __init__(self, lexers):
24 """ 24 """
25 Constructor 25 Constructor
26 26
27 @param lexers reference to the lexers dictionary 27 @param lexers reference to the lexers dictionary
28 @type dict
28 """ 29 """
29 super().__init__() 30 super().__init__()
30 self.setupUi(self) 31 self.setupUi(self)
31 self.setObjectName("EditorPropertiesPage") 32 self.setObjectName("EditorPropertiesPage")
32 33
589 def create(dlg): 590 def create(dlg):
590 """ 591 """
591 Module function to create the configuration page. 592 Module function to create the configuration page.
592 593
593 @param dlg reference to the configuration dialog 594 @param dlg reference to the configuration dialog
594 @return reference to the instantiated page (ConfigurationPageBase) 595 @type ConfigurationDialog
596 @return reference to the instantiated page
597 @rtype ConfigurationPageBase
595 """ 598 """
596 page = EditorPropertiesPage(dlg.getLexers()) 599 page = EditorPropertiesPage(dlg.getLexers())
597 return page 600 return page

eric ide

mercurial