compil fix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19928 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-08-30 22:30:31 +00:00
parent 32a0ece3de
commit 8a45e185dc
3 changed files with 3 additions and 3 deletions

View File

@ -190,7 +190,7 @@ InsetMathHull::~InsetMathHull()
Inset * InsetMathHull::clone() const
{
new InsetMathHull(*this);
return new InsetMathHull(*this);
}

View File

@ -27,7 +27,7 @@ InsetMathXYMatrix::InsetMathXYMatrix(Length const & s, char c)
Inset * InsetMathXYMatrix::clone() const
{
new InsetMathXYMatrix(*this);
return new InsetMathXYMatrix(*this);
}

View File

@ -42,7 +42,7 @@ MathMacroArgument::MathMacroArgument(size_t n)
Inset * MathMacroArgument::clone() const
{
new MathMacroArgument(*this);
return new MathMacroArgument(*this);
}