]> git.lyx.org Git - lyx.git/blobdiff - src/Thesaurus.h
layout file converter for layout files in old format
[lyx.git] / src / Thesaurus.h
index f92f2e2510d9c1a2c54661490681caf1ab8ac75f..c3ea6904e9434fbe4c077e44ee5288203482f5f5 100644 (file)
@@ -14,8 +14,8 @@
 
 #include <vector>
 #include <map>
+#include <string>
 
-#include "support/std_string.h"
 #ifdef HAVE_LIBAIKSAURUS
 #include AIKSAURUS_H_LOCATION
 #endif
@@ -31,12 +31,12 @@ public:
        ///
        ~Thesaurus();
 
-       typedef std::map<string, std::vector<string> > Meanings;
+       typedef std::map<std::string, std::vector<std::string> > Meanings;
 
        /**
         * look up some text in the thesaurus
         */
-       Meanings lookup(string const & text);
+       Meanings lookup(std::string const & text);
 
 private:
 #ifdef HAVE_LIBAIKSAURUS