]> git.lyx.org Git - lyx.git/blobdiff - src/WordLangTuple.h
Fix event loop to no longer eat CPU
[lyx.git] / src / WordLangTuple.h
index 22ac67aec2deb4fec75069010c6142f4c600cedd..86775431d38bee38dc6fadb53444f17718f0d2bb 100644 (file)
@@ -12,7 +12,8 @@
 #ifndef WORD_LANG_TUPLE_H
 #define WORD_LANG_TUPLE_H
 
-#include "LString.h"
+#include <string>
+
 
 /**
  * A word and its given language code ("en_US").
@@ -22,25 +23,25 @@ class WordLangTuple {
 public:
        WordLangTuple() {}
 
-       WordLangTuple(string const & w, string const & c)
+       WordLangTuple(std::string const & w, std::string const & c)
                : word_(w), code_(c)
        {}
 
        /// return the word
-       string const & word() const {
+       std::string const & word() const {
                return word_;
        }
 
        /// return its language code
-       string const & lang_code() const {
+       std::string const & lang_code() const {
                return code_;
        }
 
 private:
        /// the word
-       string word_;
+       std::string word_;
        /// language code of word
-       string code_;
+       std::string code_;
 };
 
 #endif // WORD_LANG_TUPLE_H