]> git.lyx.org Git - lyx.git/blobdiff - src/errorlist.h
ws changes only
[lyx.git] / src / errorlist.h
index 33e57c4b3aa3a58045ca205a2228ba805b5742cb..20b386c8418b65761cf858d8bcb5ebc48c2f45c9 100644 (file)
 #ifndef ERRORLIST_H
 #define ERRORLIST_H
 
-#include "support/std_string.h"
-
 #include <vector>
+#include <string>
 
 class Buffer;
 
 /// A class to hold an error item
 struct ErrorItem {
-       string error;
-       string description;
+       std::string error;
+       std::string description;
        int par_id;
        int pos_start;
        int pos_end;
-       ErrorItem(string const & error, string const & description, 
+       ErrorItem(std::string const & error, std::string const & description,
                  int parid, int posstart, int posend);
        ErrorItem();
 };
 
 class ErrorList : private std::vector<ErrorItem>
 {
-public:        
+public:
        ErrorList() : std::vector<ErrorItem> () {};
 
        using std::vector<ErrorItem>::push_back;