4411 def __setAutoSpellChecking(self): |
4411 def __setAutoSpellChecking(self): |
4412 """ |
4412 """ |
4413 Private slot to set the automatic spell checking of all editors. |
4413 Private slot to set the automatic spell checking of all editors. |
4414 """ |
4414 """ |
4415 enabled = self.autoSpellCheckAct.isChecked() |
4415 enabled = self.autoSpellCheckAct.isChecked() |
4416 Preferences.setEditor("AutoSpellCheckingEnabled", int(enabled)) |
4416 Preferences.setEditor("AutoSpellCheckingEnabled", enabled) |
4417 for editor in self.editors: |
4417 for editor in self.editors: |
4418 editor.setAutoSpellChecking() |
4418 editor.setAutoSpellChecking() |
4419 |
4419 |
4420 def __spellCheck(self): |
4420 def __spellCheck(self): |
4421 """ |
4421 """ |