Fixed an issue in the spell checker. 5_2_x

Fri, 09 Nov 2012 17:47:22 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 09 Nov 2012 17:47:22 +0100
branch
5_2_x
changeset 2204
71aa8b87104f
parent 2203
e12807485d16
child 2205
2df710446e51

Fixed an issue in the spell checker.

APIs/Python3/eric5.api file | annotate | diff | comparison | revisions
Documentation/Help/source.qch file | annotate | diff | comparison | revisions
Documentation/Source/eric5.QScintilla.SpellChecker.html file | annotate | diff | comparison | revisions
QScintilla/SpellChecker.py file | annotate | diff | comparison | revisions
--- a/APIs/Python3/eric5.api	Fri Nov 09 16:37:21 2012 +0100
+++ b/APIs/Python3/eric5.api	Fri Nov 09 17:47:22 2012 +0100
@@ -6088,7 +6088,7 @@
 eric5.QScintilla.SpellChecker.SpellChecker.getError?4()
 eric5.QScintilla.SpellChecker.SpellChecker.getLanguage?4()
 eric5.QScintilla.SpellChecker.SpellChecker.getSuggestions?4(word)
-eric5.QScintilla.SpellChecker.SpellChecker.getUserDictionaryPath?4(isException)
+eric5.QScintilla.SpellChecker.SpellChecker.getUserDictionaryPath?4(isException=False)
 eric5.QScintilla.SpellChecker.SpellChecker.ignoreAlways?4(word=None)
 eric5.QScintilla.SpellChecker.SpellChecker.initCheck?4(startPos, endPos)
 eric5.QScintilla.SpellChecker.SpellChecker.isAvailable?4()
Binary file Documentation/Help/source.qch has changed
--- a/Documentation/Source/eric5.QScintilla.SpellChecker.html	Fri Nov 09 16:37:21 2012 +0100
+++ b/Documentation/Source/eric5.QScintilla.SpellChecker.html	Fri Nov 09 17:47:22 2012 +0100
@@ -212,7 +212,7 @@
 </dd>
 </dl><a NAME="SpellChecker.getUserDictionaryPath" ID="SpellChecker.getUserDictionaryPath"></a>
 <h4>SpellChecker.getUserDictionaryPath (class method)</h4>
-<b>getUserDictionaryPath</b>(<i>isException</i>)
+<b>getUserDictionaryPath</b>(<i>isException=False</i>)
 <p>
         Class method to get the path name of a user dictionary file.
 </p><dl>
--- a/QScintilla/SpellChecker.py	Fri Nov 09 16:37:21 2012 +0100
+++ b/QScintilla/SpellChecker.py	Fri Nov 09 17:47:22 2012 +0100
@@ -99,7 +99,7 @@
             return os.path.join(Utilities.getConfigDir(), "spelling", "pwl.dic")
     
     @classmethod
-    def getUserDictionaryPath(cls, isException):
+    def getUserDictionaryPath(cls, isException=False):
         """
         Class method to get the path name of a user dictionary file.
         

eric ide

mercurial