commit 1aa890629bb35ccfc85178f1dbcf5f39bb6519d9
Author: Richard Kimberly Heck <rikih...@lyx.org>
Date:   Mon Nov 27 21:33:46 2023 -0500

    Better variable name
    
    I think this one must be a leftover from before the ranges.
---
 src/Paragraph.cpp        |    8 ++++----
 src/insets/InsetText.cpp |    8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp
index 5ac03fa..696f503 100644
--- a/src/Paragraph.cpp
+++ b/src/Paragraph.cpp
@@ -2375,8 +2375,8 @@ bool Paragraph::allowedInContext(Cursor const & cur, 
InsetLayout const & il) con
        if (in_allowed_inset && inInset().asInsetText() && 
il.allowedOccurrences() != -1) {
                ParagraphList & pars = cur.text()->paragraphs();
                        for (Paragraph const & par : pars) {
-                               for (auto const & table : par.insetList())
-                               if (table.inset->getLayout().name() == 
il.name())
+                               for (auto const & elem : par.insetList())
+                               if (elem.inset->getLayout().name() == il.name())
                                        ++have_ins;
                        }
                if (have_ins >= il.allowedOccurrences())
@@ -2412,8 +2412,8 @@ bool Paragraph::allowedInContext(Cursor const & cur, 
InsetLayout const & il) con
                for (; pit <= lastpit; ++pit) {
                        if (&pars[pit].layout() != d->layout_)
                                break;
-                       for (auto const & table : pars[pit].insetList())
-                               if (table.inset->getLayout().name() == 
il.name())
+                       for (auto const & elem : pars[pit].insetList())
+                               if (elem.inset->getLayout().name() == il.name())
                                        ++have_ins;
                }
                if (have_ins >= il.allowedOccurrences())
diff --git a/src/insets/InsetText.cpp b/src/insets/InsetText.cpp
index 9003652..7dbf43e 100644
--- a/src/insets/InsetText.cpp
+++ b/src/insets/InsetText.cpp
@@ -1195,10 +1195,10 @@ void InsetText::iterateForToc(DocIterator const & cdit, 
bool output_active,
                // If we find an InsetArgument that is supposed to provide the 
TOC caption,
                // we'll save it for use later.
                InsetArgument const * arginset = nullptr;
-               for (auto const & table : par.insetList()) {
-                       dit.pos() = table.pos;
-                       table.inset->addToToc(dit, doing_output, utype, 
backend);
-                       if (InsetArgument const * x = 
table.inset->asInsetArgument())
+               for (auto const & elem : par.insetList()) {
+                       dit.pos() = elem.pos;
+                       elem.inset->addToToc(dit, doing_output, utype, backend);
+                       if (InsetArgument const * x = 
elem.inset->asInsetArgument())
                                if (x->isTocCaption())
                                        arginset = x;
                }
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to