]> git.lyx.org Git - features.git/commitdiff
Fix cut-n-paste error
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Sun, 15 Sep 2019 22:46:55 +0000 (00:46 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Sun, 15 Sep 2019 22:47:47 +0000 (00:47 +0200)
Spotted by cppcheck.

src/insets/InsetTabular.cpp

index 11fc934a45479592606f77a68575084c9a87e433..4651c4b49e54bdd6d9f451d6df5aea0ed48f0eec 100644 (file)
@@ -653,7 +653,7 @@ Tabular::CellData & Tabular::CellData::operator=(CellData const & cs)
        top_line_rtrimmed = cs.top_line_rtrimmed;
        top_line_ltrimmed = cs.top_line_ltrimmed;
        bottom_line_rtrimmed = cs.bottom_line_rtrimmed;
-       bottom_line_rtrimmed = cs.bottom_line_rtrimmed;
+       bottom_line_ltrimmed = cs.bottom_line_ltrimmed;
        usebox = cs.usebox;
        rotate = cs.rotate;
        align_special = cs.align_special;