mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
Fix #9490: SIGSEGV involving LyX macros --- A reproducible MWE (part II)
This commit is contained in:
parent
4b62267814
commit
bc79c9a27b
@ -63,6 +63,8 @@ public:
|
|||||||
///
|
///
|
||||||
void setOwner(MathMacro * mathMacro) { mathMacro_ = mathMacro; }
|
void setOwner(MathMacro * mathMacro) { mathMacro_ = mathMacro; }
|
||||||
///
|
///
|
||||||
|
MathMacro * owner() { return mathMacro_; }
|
||||||
|
///
|
||||||
InsetCode lyxCode() const { return ARGUMENT_PROXY_CODE; }
|
InsetCode lyxCode() const { return ARGUMENT_PROXY_CODE; }
|
||||||
///
|
///
|
||||||
void metrics(MetricsInfo & mi, Dimension & dim) const {
|
void metrics(MetricsInfo & mi, Dimension & dim) const {
|
||||||
@ -138,6 +140,7 @@ MathMacro::MathMacro(Buffer * buf, docstring const & name)
|
|||||||
MathMacro::MathMacro(MathMacro const & that)
|
MathMacro::MathMacro(MathMacro const & that)
|
||||||
: InsetMathNest(that), expanded_(that.buffer_)
|
: InsetMathNest(that), expanded_(that.buffer_)
|
||||||
{
|
{
|
||||||
|
setBuffer(*that.buffer_);
|
||||||
assign(that);
|
assign(that);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,16 +178,45 @@ void MathMacro::assign(MathMacro const & that)
|
|||||||
ArgumentProxy * p = dynamic_cast<ArgumentProxy *>(expanded_.cell(0)[i].nucleus());
|
ArgumentProxy * p = dynamic_cast<ArgumentProxy *>(expanded_.cell(0)[i].nucleus());
|
||||||
if (p)
|
if (p)
|
||||||
p->setOwner(this);
|
p->setOwner(this);
|
||||||
|
|
||||||
|
InsetMathNest * ni = expanded_.cell(0)[i].nucleus()->asNestInset();
|
||||||
|
if (ni)
|
||||||
|
updateNestedChildren(this, ni);
|
||||||
}
|
}
|
||||||
if (macro_ && lyxrc.preview == LyXRC::PREVIEW_ON) {
|
if (macro_) {
|
||||||
// As MathData::metrics() is not called when instant preview is
|
// The macro_ pointer is updated when MathData::metrics() is
|
||||||
// on, we have to update macro_ by ourselves. In this case, we
|
// called. However, when instant preview is on or the macro is
|
||||||
// simply let it point to the last known good copy of MacroData.
|
// not on screen, MathData::metrics() is not called and we may
|
||||||
|
// have a dangling pointer. As a safety measure, when a macro
|
||||||
|
// is copied, always let macro_ point to the backup copy of the
|
||||||
|
// MacroData structure. This backup is updated every time the
|
||||||
|
// macro is changed, so it will not become stale.
|
||||||
macro_ = ¯oBackup_;
|
macro_ = ¯oBackup_;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void MathMacro::updateNestedChildren(MathMacro * owner, InsetMathNest * ni)
|
||||||
|
{
|
||||||
|
for (size_t i = 0; i < ni->nargs(); ++i) {
|
||||||
|
MathData & ar = ni->cell(i);
|
||||||
|
for (size_t j = 0; j < ar.size(); ++j) {
|
||||||
|
ArgumentProxy * ap = dynamic_cast
|
||||||
|
<ArgumentProxy *>(ar[j].nucleus());
|
||||||
|
if (ap) {
|
||||||
|
MathMacro * mm = ap->owner();
|
||||||
|
if (mm->macro_)
|
||||||
|
mm->macro_ = &mm->macroBackup_;
|
||||||
|
ap->setOwner(owner);
|
||||||
|
}
|
||||||
|
InsetMathNest * imn = ar[j].nucleus()->asNestInset();
|
||||||
|
if (imn)
|
||||||
|
updateNestedChildren(owner, imn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Inset * MathMacro::clone() const
|
Inset * MathMacro::clone() const
|
||||||
{
|
{
|
||||||
MathMacro * copy = new MathMacro(*this);
|
MathMacro * copy = new MathMacro(*this);
|
||||||
|
@ -162,6 +162,9 @@ private:
|
|||||||
bool editMode(BufferView const * bv) const;
|
bool editMode(BufferView const * bv) const;
|
||||||
/// Copy all members (except base class members)
|
/// Copy all members (except base class members)
|
||||||
void assign(MathMacro const &);
|
void assign(MathMacro const &);
|
||||||
|
/// Recursively update the pointers of all expanded macros
|
||||||
|
/// appearing in the arguments of the current macro
|
||||||
|
void updateNestedChildren(MathMacro *, InsetMathNest *);
|
||||||
|
|
||||||
/// name of macro
|
/// name of macro
|
||||||
docstring name_;
|
docstring name_;
|
||||||
|
@ -70,6 +70,8 @@ What's new
|
|||||||
|
|
||||||
* USER INTERFACE
|
* USER INTERFACE
|
||||||
|
|
||||||
|
- Fix crash when unfolding/copying macros containing other macros (bug 9490).
|
||||||
|
|
||||||
- Fix automatic insertion of longtable captions (bug 9692).
|
- Fix automatic insertion of longtable captions (bug 9692).
|
||||||
|
|
||||||
- Fix setting of nested minipage via the dialog (bug 8716).
|
- Fix setting of nested minipage via the dialog (bug 8716).
|
||||||
|
Loading…
Reference in New Issue
Block a user