From: Jean-Marc Lasgouttes Date: Sun, 15 Sep 2019 22:46:55 +0000 (+0200) Subject: Fix cut-n-paste error X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2ae2b1a1501eca621a2b4689a270188af7d2bca1;p=features.git Fix cut-n-paste error Spotted by cppcheck. --- 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;