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 |