mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
compil fix.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@19928 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
32a0ece3de
commit
8a45e185dc
@ -190,7 +190,7 @@ InsetMathHull::~InsetMathHull()
|
|||||||
|
|
||||||
Inset * InsetMathHull::clone() const
|
Inset * InsetMathHull::clone() const
|
||||||
{
|
{
|
||||||
new InsetMathHull(*this);
|
return new InsetMathHull(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ InsetMathXYMatrix::InsetMathXYMatrix(Length const & s, char c)
|
|||||||
|
|
||||||
Inset * InsetMathXYMatrix::clone() const
|
Inset * InsetMathXYMatrix::clone() const
|
||||||
{
|
{
|
||||||
new InsetMathXYMatrix(*this);
|
return new InsetMathXYMatrix(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ MathMacroArgument::MathMacroArgument(size_t n)
|
|||||||
|
|
||||||
Inset * MathMacroArgument::clone() const
|
Inset * MathMacroArgument::clone() const
|
||||||
{
|
{
|
||||||
new MathMacroArgument(*this);
|
return new MathMacroArgument(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user