X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FErrorList.h;h=29cb03cfe6ace8d311290a8140c756855c36721a;hb=e4b80698be91708ce1b9fd86d6032245ef4f3dc7;hp=f8814208163b4aa18bd8d31a9a3ba3cff10393c7;hpb=a5263e0f927034885870a65053ef3908d1c6f885;p=lyx.git diff --git a/src/ErrorList.h b/src/ErrorList.h index f881420816..29cb03cfe6 100644 --- a/src/ErrorList.h +++ b/src/ErrorList.h @@ -12,11 +12,11 @@ #ifndef ERRORLIST_H #define ERRORLIST_H -#include "support/types.h" -#include "support/docstring.h" +#include "TexRow.h" + +#include "support/strfwd.h" #include -#include namespace lyx { @@ -26,13 +26,19 @@ class Buffer; /// A class to hold an error item class ErrorItem { public: + typedef TexRow::TextEntry TextEntry; docstring error; docstring description; - int par_id; - pos_type pos_start; - pos_type pos_end; + // To generalise into RowEntries + TextEntry start; + TextEntry end; + Buffer const * buffer; + // With a start position and an end position + ErrorItem(docstring const & error, docstring const & description, + TextEntry start, TextEntry end, Buffer const * buf = 0); + // Error outside the document body ErrorItem(docstring const & error, docstring const & description, - int parid, pos_type posstart, pos_type posend); + Buffer const * buf = 0); ErrorItem(); }; @@ -40,7 +46,7 @@ public: class ErrorList : private std::vector { public: - ErrorList() : std::vector () {}; + ErrorList() : std::vector () {} using std::vector::push_back; using std::vector::end;