]> git.lyx.org Git - lyx.git/blobdiff - src/aspell_local.h
A better fix for bug 675:
[lyx.git] / src / aspell_local.h
index 8d72099705add5176d1c1fdc4fb67e70cae02e33..250cd97b0de8d47ae58429f9fe2fd30982eb2fa5 100644 (file)
 #ifndef LYX_ASPELL_H
 #define LYX_ASPELL_H
 
+#include "SpellBase.h"
+
 #include <map>
 
-#include "SpellBase.h"
 
-class AspellSpeller;
-class AspellStringEnumeration;
-class AspellCanHaveError;
-class AspellConfig;
+struct AspellSpeller;
+struct AspellStringEnumeration;
+struct AspellCanHaveError;
+struct AspellConfig;
+
+namespace lyx {
 
 class BufferParams;
 
@@ -49,11 +52,11 @@ public:
        /// accept the given word temporarily
        virtual void accept(WordLangTuple const &);
 
-       /// return the next near miss after a MISSED result
-       virtual std::string const nextMiss();
+       /// return the next near miss after a SUGGESTED_WORDS result
+       virtual docstring const nextMiss();
 
        /// give an error message on messy exit
-       virtual std::string const error();
+       virtual docstring const error();
 
 private:
        /// add a speller of the given language
@@ -75,4 +78,7 @@ private:
        AspellCanHaveError * spell_error_object;
 };
 
-#endif // ASPELL_H
+
+} // namespace lyx
+
+#endif // LYX_ASPELL_H