mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 13:31:49 +00:00
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:
parent
ed8af8f7fd
commit
2f44dc2583
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user