]> git.lyx.org Git - lyx.git/blobdiff - src/SpellBase.h
fix reading the author field.
[lyx.git] / src / SpellBase.h
index 4fdb68a80aad5f06a5b5570f2a20e2c8470c36db..dbdf6b742068f7f7b4962c4e3d5eee5701fe0f8a 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef SPELL_BASE_H
 #define SPELL_BASE_H
 
-#include "LString.h" // can't forward declare...
+#include <string>
 
 class BufferParams;
 class WordLangTuple;
@@ -49,10 +49,10 @@ public:
        virtual void accept(WordLangTuple const &) = 0;
 
        /// return the next near miss after a MISSED result
-       virtual string const nextMiss() = 0;
+       virtual std::string const nextMiss() = 0;
 
        /// give an error message on messy exit
-       virtual string const error() = 0;
+       virtual std::string const error() = 0;
 
 };