8646:4b84216fc8e2 | 8647:cdbce48aded8 |
---|---|
560 Public method to get a reference to the dictionary in use. | 560 Public method to get a reference to the dictionary in use. |
561 | 561 |
562 @return reference to the current dictionary | 562 @return reference to the current dictionary |
563 @rtype enchant.Dict | 563 @rtype enchant.Dict |
564 """ | 564 """ |
565 return None | 565 pass |
566 | 566 |
567 def setDict(self, spellDict): | 567 def setDict(self, spellDict): |
568 """ | 568 """ |
569 Public method to set the dictionary to be used. | 569 Public method to set the dictionary to be used. |
570 | 570 |
609 @type str | 609 @type str |
610 @param pel file name of the personal exclude list | 610 @param pel file name of the personal exclude list |
611 @type str | 611 @type str |
612 """ | 612 """ |
613 pass | 613 pass |
614 | |
614 | 615 |
615 class EricSpellCheckedPlainTextEdit(QPlainTextEdit, SpellCheckMixin): | 616 class EricSpellCheckedPlainTextEdit(QPlainTextEdit, SpellCheckMixin): |
616 """ | 617 """ |
617 Class implementing a QPlainTextEdit with built-in spell checker. | 618 Class implementing a QPlainTextEdit with built-in spell checker. |
618 """ | 619 """ |
623 @param *args list of arguments for the QPlainTextEdit constructor. | 624 @param *args list of arguments for the QPlainTextEdit constructor. |
624 @type list | 625 @type list |
625 """ | 626 """ |
626 QPlainTextEdit.__init__(self, *args) | 627 QPlainTextEdit.__init__(self, *args) |
627 SpellCheckMixin.__init__(self) | 628 SpellCheckMixin.__init__(self) |
629 | |
628 | 630 |
629 class EricSpellCheckedTextEdit(QTextEdit, SpellCheckMixin): | 631 class EricSpellCheckedTextEdit(QTextEdit, SpellCheckMixin): |
630 """ | 632 """ |
631 Class implementing a QTextEdit with built-in spell checker. | 633 Class implementing a QTextEdit with built-in spell checker. |
632 """ | 634 """ |