From: Jean-Marc Lasgouttes Date: Mon, 18 Jul 2016 12:34:08 +0000 (+0200) Subject: Some things did not need to be mutable after all X-Git-Tag: 2.3.0alpha1~1244 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=2306fca65961f2b25eb8c86ae0c8824582f74cc2;p=features.git Some things did not need to be mutable after all --- diff --git a/src/insets/InsetTabular.h b/src/insets/InsetTabular.h index 9e0c41e9a7..a491a3b21d 100644 --- a/src/insets/InsetTabular.h +++ b/src/insets/InsetTabular.h @@ -756,7 +756,7 @@ public: /// column_vector column_info; /// - mutable cell_vvector cell_info; + cell_vvector cell_info; /// Length tabular_width; /// diff --git a/src/insets/InsetText.h b/src/insets/InsetText.h index 8df1bdfce2..28340193c7 100644 --- a/src/insets/InsetText.h +++ b/src/insets/InsetText.h @@ -232,7 +232,7 @@ private: /// ColorCode frame_color_; /// - mutable Text text_; + Text text_; };