Index: gc_lang/fr/oxt/DictOptions/SearchWords.py
==================================================================
--- gc_lang/fr/oxt/DictOptions/SearchWords.py
+++ gc_lang/fr/oxt/DictOptions/SearchWords.py
@@ -22,11 +22,11 @@
 from com.sun.star.awt.MessageBoxType import INFOBOX, ERRORBOX # MESSAGEBOX, INFOBOX, WARNINGBOX, ERRORBOX, QUERYBOX
 
 def MessageBox (xDocument, sMsg, sTitle, nBoxType=INFOBOX, nBoxButtons=BUTTONS_OK):
     xParentWin = xDocument.CurrentController.Frame.ContainerWindow
     ctx = uno.getComponentContext()
-    xToolkit = ctx.ServiceManager.createInstanceWithContext("com.sun.star.awt.Toolkit", ctx) 
+    xToolkit = ctx.ServiceManager.createInstanceWithContext("com.sun.star.awt.Toolkit", ctx)
     xMsgBox = xToolkit.createMessageBox(xParentWin, nBoxType, nBoxButtons, sTitle, sMsg)
     return xMsgBox.execute()
 
 
 def _waitPointer (funcDecorated):
@@ -113,11 +113,11 @@
         # fonts
         xFDTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor")
         xFDTitle.Height = 9
         xFDTitle.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD")
         xFDTitle.Name = "Verdana"
-        
+
         xFDSubTitle = uno.createUnoStruct("com.sun.star.awt.FontDescriptor")
         xFDSubTitle.Height = 8
         xFDSubTitle.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD")
         xFDSubTitle.Name = "Verdana"
 
@@ -184,11 +184,11 @@
         except:
             traceback.print_exc()
 
     def initSpellChecker (self):
         if not self.oSpellChecker:
-            self.oSpellChecker = sc.SpellChecker("fr", "fr-allvars.bdic", "", "", self.oPersonalDicJSON)
+            self.oSpellChecker = sc.SpellChecker("fr", "fr-allvars.bdic", "", self.oPersonalDicJSON)
 
     @_waitPointer
     def searchSimilar (self):
         self.initSpellChecker()
         sWord = self.xWord.Text.strip()