X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Faspell.C;h=f9caa75233a690270ba6c0259b50f89d9f8a69e1;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=1d711a3bf40e9e92add4fb09534f89ef8c142419;hpb=a6444784dca48da8b1f7723be12069b2e1dbb4c5;p=lyx.git diff --git a/src/aspell.C b/src/aspell.C index 1d711a3bf4..f9caa75233 100644 --- a/src/aspell.C +++ b/src/aspell.C @@ -20,10 +20,9 @@ #include -using lyx::docstring; - using std::string; +namespace lyx { ASpell::ASpell(BufferParams const &, string const & lang) : els(0), spell_error_object(0) @@ -142,5 +141,8 @@ docstring const ASpell::error() err = aspell_error_message(spell_error_object); } - return (err ? lyx::from_utf8(err) : docstring()); + return (err ? from_utf8(err) : docstring()); } + + +} // namespace lyx