* getSpeller create a new speller, so call it create*

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23775 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Stefan Schimanski 2008-03-16 17:06:26 +00:00
parent bfdb31d076
commit a015e133ab

View File

@ -198,7 +198,7 @@ void GuiSpellchecker::partialUpdate(int state)
}
static SpellBase * getSpeller(BufferParams const & bp)
static SpellBase * createSpeller(BufferParams const & bp)
{
string lang = (lyxrc.isp_use_alt_lang)
? lyxrc.isp_alt_lang
@ -227,7 +227,7 @@ bool GuiSpellchecker::initialiseParams(string const &)
{
LYXERR(Debug::GUI, "Spellchecker::initialiseParams");
speller_ = getSpeller(buffer().params());
speller_ = createSpeller(buffer().params());
if (!speller_)
return false;