]> git.lyx.org Git - lyx.git/commitdiff
fix compiler warning introduced in r26399; note that paramater pos was not used in...
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 16 Sep 2008 11:32:38 +0000 (11:32 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 16 Sep 2008 11:32:38 +0000 (11:32 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26424 a592a061-630c-0410-9148-cb99ea01b6c8

src/Row.cpp

index 5617fb76ef3d15334624daa2c4160a13def56011..b910edb1c7136ec732ab5d0fece6a29dd4ba9a79 100644 (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)
 {}