lyx_mirror/src/SpellBase.C
Angus Leeming 4bf2365fe7 Disable the lyxserver on Windows.
Clean up spellchecker code.
LyX 1.3.x should now compile out of the box on Windows.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9929 a592a061-630c-0410-9148-cb99ea01b6c8
2005-05-10 15:00:16 +00:00

50 lines
702 B
C

/**
* \file SpellBase.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author unknown
* \author John Levon
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "SpellBase.h"
#include "gettext.h"
using std::string;
bool SpellBase::alive()
{
return false;
}
SpellBase::Result SpellBase::check(WordLangTuple const &)
{
return UNKNOWN;
}
void SpellBase::insert(WordLangTuple const &)
{}
void SpellBase::accept(WordLangTuple const &)
{}
string const SpellBase::nextMiss()
{
return string();
}
string const SpellBase::error()
{
return _("Native OS API not yet supported.");
}