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() |