Esempio n. 1
0
 public LinuxHunspell(string affDirectory, string dicDictory)
 {
     //Also search - /usr/share/hunspell
     try {
         _hunspellHandle = Unamanaged.Hunspell_create(affDirectory, dicDictory);
     } catch {
         System.Windows.Forms.MessageBox.Show("Unable to start hunspell spell checker - make sure hunspell is installed!");
         throw;
     }
 }
Esempio n. 2
0
 public MacHunspell(string affDirectory, string dicDictory)
 {
     //Also search - /usr/share/hunspell
     _hunspellHandle = Unamanaged.Hunspell_create(affDirectory, dicDictory);
 }