src/eric7/Preferences/ConfigurationPages/EditorSpellCheckingPage.py

branch
eric7
changeset 10683
779cda568acb
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10682:47be220abdaf 10683:779cda568acb
120 "AutoSpellCheckingEnabled", self.enabledCheckBox.isChecked() 120 "AutoSpellCheckingEnabled", self.enabledCheckBox.isChecked()
121 ) 121 )
122 Preferences.setEditor("AutoSpellCheckChunkSize", self.chunkSizeSpinBox.value()) 122 Preferences.setEditor("AutoSpellCheckChunkSize", self.chunkSizeSpinBox.value())
123 123
124 124
125 def create(dlg): # noqa: U100 125 def create(_dlg):
126 """ 126 """
127 Module function to create the configuration page. 127 Module function to create the configuration page.
128 128
129 @param dlg reference to the configuration dialog 129 @param _dlg reference to the configuration dialog (unused)
130 @type ConfigurationDialog 130 @type ConfigurationDialog
131 @return reference to the instantiated page 131 @return reference to the instantiated page
132 @rtype ConfigurationPageBase 132 @rtype ConfigurationPageBase
133 """ 133 """
134 page = EditorSpellCheckingPage() 134 page = EditorSpellCheckingPage()

eric ide

mercurial