eric6/QScintilla/SpellCheckingDialog.py

changeset 8218
7c09585bd960
parent 7923
91e843545d9a
equal deleted inserted replaced
8217:385f60c94548 8218:7c09585bd960
26 @param spellChecker reference to the spell checker (SpellChecker) 26 @param spellChecker reference to the spell checker (SpellChecker)
27 @param startPos position to start spell checking (integer) 27 @param startPos position to start spell checking (integer)
28 @param endPos end position for spell checking (integer) 28 @param endPos end position for spell checking (integer)
29 @param parent reference to the parent widget (QWidget) 29 @param parent reference to the parent widget (QWidget)
30 """ 30 """
31 super(SpellCheckingDialog, self).__init__(parent) 31 super().__init__(parent)
32 self.setupUi(self) 32 self.setupUi(self)
33 33
34 self.__spell = spellChecker 34 self.__spell = spellChecker
35 self.languageLabel.setText( 35 self.languageLabel.setText(
36 "<b>{0}</b>".format(self.__spell.getLanguage())) 36 "<b>{0}</b>".format(self.__spell.getLanguage()))

eric ide

mercurial