]> git.lyx.org Git - lyx.git/blobdiff - src/errorlist.C
* src/frontends/qt4/ui/QPrefCygwinPathUi.ui:
[lyx.git] / src / errorlist.C
index d829f04c4f573c5766f102362b7399201243f04a..e3f19044b21500c60d3896c5da6b2f1b33e78ad3 100644 (file)
 
 #include "errorlist.h"
 
-using lyx::pos_type;
-using std::string;
 
+namespace lyx {
+
+using std::string;
 
-ErrorItem::ErrorItem(string const & error_, string const & description_,
+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_)
@@ -24,5 +25,8 @@ ErrorItem::ErrorItem(string const & error_, string const & description_,
 
 
 ErrorItem::ErrorItem()
-       : par_id(-1),  pos_start(0),  pos_end(0)
+       : par_id(-1), pos_start(0), pos_end(0)
 {}
+
+
+} // namespace lyx