mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-23 16:52:02 +00:00
suppress (semi-)spurious informative message...
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4070 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
da567d2b20
commit
092e3ca6ec
@ -96,6 +96,12 @@ void MathFracInset::maplize(MapleStream & os) const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathFracInset::octavize(OctaveStream & os) const
|
||||||
|
{
|
||||||
|
os << '(' << cell(0) << ")/(" << cell(1) << ')';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void MathFracInset::mathmlize(MathMLStream & os) const
|
void MathFracInset::mathmlize(MathMLStream & os) const
|
||||||
{
|
{
|
||||||
os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
|
os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
|
||||||
|
@ -35,6 +35,8 @@ public:
|
|||||||
///
|
///
|
||||||
void maplize(MapleStream &) const;
|
void maplize(MapleStream &) const;
|
||||||
///
|
///
|
||||||
|
void octavize(OctaveStream &) const;
|
||||||
|
///
|
||||||
void mathmlize(MathMLStream &) const;
|
void mathmlize(MathMLStream &) const;
|
||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
|
@ -359,7 +359,7 @@ void MathScriptInset::write2(MathInset const * nuc, WriteStream & os) const
|
|||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
if (os.firstitem())
|
if (os.firstitem())
|
||||||
lyxerr << "suppressing {} \n";
|
lyxerr[Debug::MATHED] << "suppressing {} when writing\n";
|
||||||
else
|
else
|
||||||
os << "{}";
|
os << "{}";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user