]> git.lyx.org Git - lyx.git/blobdiff - src/SpellBase.h
Fixed some lines that were too long. It compiled afterwards.
[lyx.git] / src / SpellBase.h
index 5eee2f66778a6abf5042efcf8ecb27ca7c5e7d15..e4ec616bdc360ef641051d1d6eeac0d9d6857bda 100644 (file)
 #ifndef SPELL_BASE_H
 #define SPELL_BASE_H
 
-#include <string>
+#include "support/docstring.h"
+
+
+namespace lyx {
 
 class BufferParams;
 class WordLangTuple;
@@ -56,10 +59,13 @@ public:
        virtual void accept(WordLangTuple const &);
 
        /// return the next near miss after a SUGGESTED_WORDS result
-       virtual std::string const nextMiss();
+       virtual docstring const nextMiss();
 
        /// give an error message on messy exit
-       virtual std::string const error();
+       virtual docstring const error();
 };
 
+
+} // namespace lyx
+
 #endif // SPELL_BASE_H