X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FSpellBase.C;h=e2935de1632aa9f5f4c94b6043a72978fe79a567;hb=024275f0690b41634e26dabe8758e3dc6cd31ee2;hp=3fbe1751549118675853e1a84e5df594d9d87974;hpb=43b77ba2d722cdb8a9437926f839c1dcbf3c0b89;p=lyx.git diff --git a/src/SpellBase.C b/src/SpellBase.C index 3fbe175154..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 lyx::to_utf8(_("Native OS API not yet supported.")); + return _("Native OS API not yet supported."); } + + +} // namespace lyx