fix compiler warning introduced in r26399; note that paramater pos was not used in the Row(pos) form of the constructor

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26424 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2008-09-16 11:32:38 +00:00
parent f2dc0e073d
commit f3900b8b9b

View File

@ -28,15 +28,17 @@ namespace lyx {
Row::Row()
: separator(0), label_hfill(0), x(0),
sel_beg(-1), sel_end(-1), changed_(false), crc_(0),
pos_(0), end_(0), left_margin_sel(false), right_margin_sel(false)
sel_beg(-1), sel_end(-1),
left_margin_sel(false), right_margin_sel(false),
changed_(false), crc_(0), pos_(0), end_(0)
{}
Row::Row(pos_type pos)
: separator(0), label_hfill(0), x(0),
sel_beg(-1), sel_end(-1), changed_(false), crc_(0),
pos_(0), end_(0), left_margin_sel(false), right_margin_sel(false)
sel_beg(-1), sel_end(-1),
left_margin_sel(false), right_margin_sel(false),
changed_(false), crc_(0), pos_(pos), end_(0)
{}