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:
André Pönitz 2002-04-25 15:37:10 +00:00
parent da567d2b20
commit 092e3ca6ec
3 changed files with 9 additions and 1 deletions

View File

@ -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");

View File

@ -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:
/// ///

View File

@ -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 << "{}";