]> git.lyx.org Git - lyx.git/blobdiff - src/SpellBase.C
Small formatting and comment cleanup.
[lyx.git] / src / SpellBase.C
index 3ae16cde96ed256499789d36993e8e9fae57798c..e2935de1632aa9f5f4c94b6043a72978fe79a567 100644 (file)
@@ -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