]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloat.C
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetfloat.C
index 0ba647db477d004ce7744eb4217a98d363d45368..523602e99361a87d2c99d5aaa6e250bb88961eca 100644 (file)
 #include "lyxlex.h"
 #include "outputparams.h"
 #include "paragraph.h"
-#include "pariterator.h"
+#include "TocBackend.h"
 
 #include "support/lstrings.h"
 #include "support/convert.h"
 
-#include <sstream>
-
 
 namespace lyx {
 
@@ -127,7 +125,7 @@ InsetFloat::InsetFloat(BufferParams const & bp, string const & type)
        font.setColor(LColor::collapsable);
        setLabelFont(font);
        params_.type = type;
-       setInsetName(type);
+       setInsetName(from_utf8(type));
 }
 
 
@@ -378,7 +376,7 @@ void InsetFloat::sideways(bool s, BufferParams const & bp)
 }
 
 
-void InsetFloat::addToToc(toc::TocList & toclist, Buffer const & buf) const
+void InsetFloat::addToToc(TocList & toclist, Buffer const & buf) const
 {
        ParConstIterator pit = par_const_iterator_begin(*this);
        ParConstIterator end = par_const_iterator_end(*this);
@@ -386,12 +384,12 @@ void InsetFloat::addToToc(toc::TocList & toclist, Buffer const & buf) const
        // Find a caption layout in one of the (child inset's) pars
        for (; pit != end; ++pit) {
                if (pit->layout()->labeltype == LABEL_SENSITIVE) {
-                       string const type = params_.type;
+                       Toc & toc = toclist[params_.type];
                        docstring const str =
-                               convert<docstring>(toclist[type].size() + 1)
+                               convert<docstring>(toc.size() + 1)
                                + ". " + pit->asString(buf, false);
-                       toc::TocItem const item(pit, 0, str);
-                       toclist[type].push_back(item);
+                       toc.push_back(TocItem(pit, 0, str));
+                       return;
                }
        }
 }