]> git.lyx.org Git - lyx.git/blobdiff - src/buffer_funcs.C
Scons: update_po target, part one: language_l10n.pot
[lyx.git] / src / buffer_funcs.C
index 5f1b6259b760f567697c1606f2239aa9d3ee9153..77c1af818d97c8b0de92b6519d9c94bb89c6c5bb 100644 (file)
@@ -553,11 +553,17 @@ void setLabel(Buffer const & buf, ParIterator & it, LyXTextClass const & textcla
                InsetBase * in = 0;
                while (i > 0) {
                        --i;
-                       in = &it[i].inset();
-                       if (in->lyxCode() == InsetBase::FLOAT_CODE
-                           || in->lyxCode() == InsetBase::WRAP_CODE)
+                       InsetBase::Code const code = it[i].inset().lyxCode();
+                       if (code == InsetBase::FLOAT_CODE ||
+                           code == InsetBase::WRAP_CODE) {
+                               in = &it[i].inset();
                                break;
+                       }
                }
+               // FIXME Can getInsetName() return an empty name for wide or
+               // float insets? If not we can put the definition of type
+               // inside the if (in) clause and use that instead of
+               // if (!type.empty()).
                docstring type;
                if (in)
                        type = in->getInsetName();
@@ -689,8 +695,19 @@ void updateLabels(Buffer const & buf, bool childonly)
                }
        }
 
-       const_cast<Buffer &>(buf).tocBackend().update();
+       Buffer & cbuf = const_cast<Buffer &>(buf);
+       cbuf.tocBackend().update();
+       cbuf.structureChanged();
 }
 
 
+void checkBufferStructure(Buffer & buffer, ParIterator const & par_it)
+{
+       if (par_it->layout()->labeltype == LABEL_COUNTER
+               && par_it->layout()->toclevel != LyXLayout::NOT_IN_TOC) {
+               buffer.tocBackend().updateItem(par_it);
+               buffer.structureChanged();
+       }
+}
+
 } // namespace lyx