]> git.lyx.org Git - lyx.git/blobdiff - src/errorlist.h
added a parseError signal to Buffer and use it
[lyx.git] / src / errorlist.h
index a10225790c24c7a11cd6c0c568a3af02ef48e23e..21a87b08ed14880efb3a09ba67a6e32d5015533d 100644 (file)
@@ -13,9 +13,9 @@
  * Full author contact details are available in file CREDITS
  */
 
+#include "LString.h"
 
 #include <vector>
-#include "support/lstrings.h"
 
 class Buffer;
 class TeXErrors;
@@ -27,8 +27,8 @@ struct ErrorItem {
        int par_id;
        int pos_start;
        int pos_end;
-       ErrorItem(string const &, string const &
-                 int, int, int);
+       ErrorItem(string const & error, string const & description
+                 int parid, int posstart, int posend);
        ErrorItem();
 };