]> git.lyx.org Git - lyx.git/blobdiff - src/ErrorList.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / ErrorList.h
index e5ccdce7ad698d0f6f552f6081cbccf758f28b63..276cd267944dd90d21386c668490deb059bcaa57 100644 (file)
@@ -16,7 +16,6 @@
 #include "support/types.h"
 
 #include <vector>
-#include <string>
 
 
 namespace lyx {
@@ -31,8 +30,10 @@ public:
        int par_id;
        pos_type pos_start;
        pos_type pos_end;
+       Buffer const * buffer;
        ErrorItem(docstring const & error, docstring const & description,
-                 int parid, pos_type posstart, pos_type posend);
+                 int parid, pos_type posstart, pos_type posend,
+                 Buffer const * buf = 0);
        ErrorItem();
 };
 
@@ -40,7 +41,7 @@ public:
 class ErrorList : private std::vector<ErrorItem>
 {
 public:
-       ErrorList() : std::vector<ErrorItem> () {};
+       ErrorList() : std::vector<ErrorItem> () {}
 
        using std::vector<ErrorItem>::push_back;
        using std::vector<ErrorItem>::end;