]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathHull.C
Fix command-line export
[lyx.git] / src / mathed / InsetMathHull.C
index 927e533acb05bf8e683a496f5fa8cafc6612a89b..ac27c50a4802190f922fbafca1df87f16d29d000 100644 (file)
@@ -463,11 +463,12 @@ bool InsetMathHull::display() const
 }
 
 
-void InsetMathHull::getLabelList(Buffer const &, vector<string> & labels) const
+void InsetMathHull::getLabelList(Buffer const &, vector<docstring> & labels) const
 {
        for (row_type row = 0; row < nrows(); ++row)
                if (!label_[row].empty() && nonum_[row] != 1)
-                       labels.push_back(label_[row]);
+                       // FIXME UNICODE
+                       labels.push_back(lyx::from_utf8(label_[row]));
 }