]> git.lyx.org Git - features.git/blobdiff - src/mathed/InsetMathHull.cpp
Consistency of ellipses across the UI
[features.git] / src / mathed / InsetMathHull.cpp
index 92372f02cb8f206377c69b41b7b422f74c6bd11c..560c9991c88a39c1a3fbfc8b2c7e59901a231433 100644 (file)
@@ -2381,11 +2381,13 @@ void InsetMathHull::toString(odocstream & os) const
 }
 
 
-void InsetMathHull::forOutliner(docstring & os, size_t) const
+void InsetMathHull::forOutliner(docstring & os, size_t const, bool const) const
 {
        odocstringstream ods;
        OutputParams op(0);
        op.for_toc = true;
+       // FIXME: this results in spilling TeX into the LyXHTML output since the
+       // outliner is used to generate the LyXHTML list of figures/etc.
        plaintext(ods, op);
        os += ods.str();
 }