From 2ae2b1a1501eca621a2b4689a270188af7d2bca1 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Mon, 16 Sep 2019 00:46:55 +0200 Subject: [PATCH] Fix cut-n-paste error Spotted by cppcheck. --- src/insets/InsetTabular.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/InsetTabular.cpp b/src/insets/InsetTabular.cpp index 11fc934a45..4651c4b49e 100644 --- a/src/insets/InsetTabular.cpp +++ b/src/insets/InsetTabular.cpp @@ -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; -- 2.39.5