X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpellBase.C;h=e2935de1632aa9f5f4c94b6043a72978fe79a567;hb=3d2184730a436d56dd4e3ddad1f067d8bb14200e;hp=7b5b04e1bfbf176e6228f3028ea00f9d01c0c994;hpb=201e5bdf707317be29e9b7476e2b97a34e2d0b48;p=lyx.git diff --git a/src/SpellBase.C b/src/SpellBase.C index 7b5b04e1bf..e2935de163 100644 --- a/src/SpellBase.C +++ b/src/SpellBase.C @@ -14,6 +14,9 @@ #include "SpellBase.h" #include "gettext.h" + +namespace lyx { + using std::string; @@ -37,13 +40,16 @@ void SpellBase::accept(WordLangTuple const &) {} -string const SpellBase::nextMiss() +docstring const SpellBase::nextMiss() { - return string(); + return docstring(); } -string const SpellBase::error() +docstring const SpellBase::error() { return _("Native OS API not yet supported."); } + + +} // namespace lyx