]> git.lyx.org Git - features.git/commitdiff
Fixup f96b99dcb35: read correctly \limits after macros
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 7 Sep 2020 10:13:42 +0000 (12:13 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Mon, 7 Sep 2020 10:13:42 +0000 (12:13 +0200)
Move InsetMacro::limits_ to InsetMacro::Private, where it should have
been from the start. This means that limits_ is now copied when the
macro is cloned.

src/mathed/InsetMathMacro.cpp
src/mathed/InsetMathMacro.h

index 144318130ae52bddf49208f234c6b78e2bd5f37d..bf363b61db7c7d849bdaafffce2186b6151f864c 100644 (file)
@@ -206,7 +206,7 @@ public:
                  expanded_(buf), definition_(buf), attachedArgsNum_(0),
                  optionals_(0), nextFoldMode_(true), macroBackup_(buf),
                  macro_(0), needsUpdate_(false), isUpdating_(false),
-                 appetite_(9), nesting_(0)
+                 appetite_(9), nesting_(0), limits_(AUTO_LIMITS)
        {
        }
        /// Update the pointers to our owner of all expanded macros.
@@ -248,6 +248,8 @@ public:
        size_t appetite_;
        /// Level of nesting in macros (including this one)
        int nesting_;
+       ///
+       Limits limits_;
 };
 
 
@@ -371,6 +373,7 @@ bool InsetMathMacro::addToMathRow(MathRow & mrow, MetricsInfo & mi) const
        return has_contents;
 }
 
+
 /// Whether the inset allows \(no)limits
 bool InsetMathMacro::allowsLimitsChange() const
 {
@@ -403,6 +406,18 @@ Limits InsetMathMacro::defaultLimits() const
 }
 
 
+Limits InsetMathMacro::limits() const
+{
+       return d->limits_;
+}
+
+
+void InsetMathMacro::limits(Limits lim)
+{
+       d->limits_ = lim;
+}
+
+
 void InsetMathMacro::beforeMetrics() const
 {
        d->macro_->lock();
index 9a4bcc929fdf7158dfe13badb9c512220ffe5f7f..4332148bb99501e230122015086e71c8ed2f4249 100644 (file)
@@ -47,9 +47,9 @@ public:
        /// The default limits value
        Limits defaultLimits() const;
        /// whether the inset has limit-like sub/superscript
-       Limits limits() const { return limits_; }
+       Limits limits() const;
        /// sets types of sub/superscripts
-       void limits(Limits lim) { limits_ = lim; }
+       void limits(Limits lim);
 
        ///
        void beforeMetrics() const;
@@ -194,9 +194,6 @@ private:
        ///
        bool editMode(BufferView const * bv) const;
 
-       ///
-       Limits limits_ = AUTO_LIMITS;
-
        ///
        class Private;
        ///