* de.po: sync with branch.
[lyx.git] / src / ErrorList.cpp
blobbe395cbd2ebaca4e48b44273654bcf2573aebb45
1 /**
2 * \file ErrorList.cpp
3 * This file is part of LyX, the document processor.
4 * Licence details can be found in the file COPYING.
6 * \author Alfredo Braunstein
8 * Full author contact details are available in file CREDITS.
9 */
11 #include <config.h>
13 #include "ErrorList.h"
15 using namespace std;
17 namespace lyx {
20 ErrorItem::ErrorItem(docstring const & error_, docstring const & description_,
21 int par_id_, pos_type pos_start_, pos_type pos_end_)
22 : error(error_), description(description_), par_id(par_id_),
23 pos_start(pos_start_), pos_end(pos_end_)
27 ErrorItem::ErrorItem()
28 : par_id(-1), pos_start(0), pos_end(0)
32 } // namespace lyx