mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
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:
parent
f2dc0e073d
commit
f3900b8b9b
10
src/Row.cpp
10
src/Row.cpp
@ -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)
|
||||
{}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user