mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 19:14:51 +00:00
tentatively fix gcc compilation.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23439 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
de518abff5
commit
f9662a5591
@ -140,9 +140,10 @@ docstring hullName(HullType type)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static InsetLabel * dummy_pointer = 0;
|
||||||
|
|
||||||
InsetMathHull::InsetMathHull()
|
InsetMathHull::InsetMathHull()
|
||||||
: InsetMathGrid(1, 1), type_(hullNone), nonum_(1, false), label_(1, 0),
|
: InsetMathGrid(1, 1), type_(hullNone), nonum_(1, false), label_(1, dummy_pointer),
|
||||||
preview_(new RenderPreview(this))
|
preview_(new RenderPreview(this))
|
||||||
{
|
{
|
||||||
//lyxerr << "sizeof InsetMath: " << sizeof(InsetMath) << endl;
|
//lyxerr << "sizeof InsetMath: " << sizeof(InsetMath) << endl;
|
||||||
@ -155,7 +156,7 @@ InsetMathHull::InsetMathHull()
|
|||||||
|
|
||||||
|
|
||||||
InsetMathHull::InsetMathHull(HullType type)
|
InsetMathHull::InsetMathHull(HullType type)
|
||||||
: InsetMathGrid(getCols(type), 1), type_(type), nonum_(1, false), label_(1, 0),
|
: InsetMathGrid(getCols(type), 1), type_(type), nonum_(1, false), label_(1, dummy_pointer),
|
||||||
preview_(new RenderPreview(this))
|
preview_(new RenderPreview(this))
|
||||||
{
|
{
|
||||||
initMath();
|
initMath();
|
||||||
@ -687,7 +688,7 @@ void InsetMathHull::addRow(row_type row)
|
|||||||
if (!rowChangeOK())
|
if (!rowChangeOK())
|
||||||
return;
|
return;
|
||||||
nonum_.insert(nonum_.begin() + row + 1, !numberedType());
|
nonum_.insert(nonum_.begin() + row + 1, !numberedType());
|
||||||
label_.insert(label_.begin() + row + 1, 0);
|
label_.insert(label_.begin() + row + 1, dummy_pointer);
|
||||||
InsetMathGrid::addRow(row);
|
InsetMathGrid::addRow(row);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user