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