]> git.lyx.org Git - lyx.git/blobdiff - src/ErrorList.h
Update my email and status.
[lyx.git] / src / ErrorList.h
index e58c47d0f043fce7b6283d69794411dae856d7e2..d0b77439ac27dd7e660aedec6ed9931b20326cf9 100644 (file)
@@ -13,6 +13,7 @@
 #define ERRORLIST_H
 
 #include "support/docstring.h"
+#include "support/types.h"
 
 #include <vector>
 #include <string>
@@ -30,8 +31,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();
 };