X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ferrorlist.C;h=e3f19044b21500c60d3896c5da6b2f1b33e78ad3;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=1b4d7914a5e42619c8f0575131a07ea9c25101f8;hpb=91de22ef340abbf1e9ba7d422bcd9024fa90d63f;p=lyx.git diff --git a/src/errorlist.C b/src/errorlist.C index 1b4d7914a5..e3f19044b2 100644 --- a/src/errorlist.C +++ b/src/errorlist.C @@ -13,15 +13,20 @@ #include "errorlist.h" -ErrorItem::ErrorItem(string const & error, string const & description, - int par_id, int pos_start, int pos_end) - : error(error), description(description), par_id(par_id), - pos_start(pos_start), pos_end(pos_end) +namespace lyx { + +using std::string; + +ErrorItem::ErrorItem(docstring const & error_, docstring const & description_, + int par_id_, pos_type pos_start_, pos_type pos_end_) + : error(error_), description(description_), par_id(par_id_), + pos_start(pos_start_), pos_end(pos_end_) {} ErrorItem::ErrorItem() - : par_id(-1), pos_start(0), pos_end(0) + : par_id(-1), pos_start(0), pos_end(0) {} +} // namespace lyx