Fri, 09 Nov 2012 17:47:22 +0100
Fixed an issue in the spell checker.
--- 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()
--- 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.