This doesn't seem to be compiled even, but oh well.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@33972 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-03-31 19:01:15 +00:00
parent ed8af8f7fd
commit 2f44dc2583
2 changed files with 9 additions and 1 deletions

View File

@ -120,7 +120,13 @@ void InsetMathMBox::cursorPos(BufferView const & bv,
void InsetMathMBox::mathmlize(MathStream & ms) const
{
SetMode textmode(ms, true, from_ascii("class='mbox'"));
SetMode textmode(ms, true, "class='mbox'");
ms << cell(0);
}
void InsetMathMBox::htmlize(HtmlStream & ms) const
{
SetHTMLMode textmode(ms, true, "class='mbox'");
ms << cell(0);
}

View File

@ -50,6 +50,8 @@ public:
///
void mathmlize(MathStream &) const;
///
void htmlize(HtmlStream &) const;
///
Text * getText(int) const;
///
void cursorPos(BufferView const & bv, CursorSlice const & sl,