mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Revert r34761 because that was not the right fix that is going to be
committed shortly. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34762 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7eeb664bbb
commit
d546a9b286
@ -68,11 +68,8 @@ class InsetMathScript;
|
||||
class InsetMathString;
|
||||
class InsetMathSpace;
|
||||
class InsetMathSpecialChar;
|
||||
class InsetMathSubstack;
|
||||
class InsetMathSymbol;
|
||||
class InsetMathTabular;
|
||||
class InsetMathUnknown;
|
||||
class InsetMathXYMatrix;
|
||||
|
||||
class InsetMathRef;
|
||||
|
||||
@ -151,15 +148,9 @@ public:
|
||||
virtual InsetMathSpace const * asSpaceInset() const { return 0; }
|
||||
virtual InsetMathString * asStringInset() { return 0; }
|
||||
virtual InsetMathString const * asStringInset() const { return 0; }
|
||||
virtual InsetMathSubstack * asSubstackInset() { return 0; }
|
||||
virtual InsetMathSubstack const * asSubstackInset() const { return 0; }
|
||||
virtual InsetMathSymbol const * asSymbolInset() const { return 0; }
|
||||
virtual InsetMathTabular * asTabularInset() { return 0; }
|
||||
virtual InsetMathTabular const * asTabularInset() const { return 0; }
|
||||
virtual InsetMathUnknown * asUnknownInset() { return 0; }
|
||||
virtual InsetMathUnknown const * asUnknownInset() const { return 0; }
|
||||
virtual InsetMathXYMatrix * asXYMatrixInset() { return 0; }
|
||||
virtual InsetMathXYMatrix const * asXYMatrixInset() const { return 0; }
|
||||
virtual InsetMathRef * asRefInset() { return 0; }
|
||||
virtual InsetMathSpecialChar const * asSpecialCharInset() const { return 0; }
|
||||
|
||||
|
@ -646,10 +646,6 @@ void InsetMathGrid::updateBuffer(ParIterator const & it, UpdateType utype)
|
||||
|
||||
docstring InsetMathGrid::eolString(row_type row, bool fragile, bool last_eoln) const
|
||||
{
|
||||
// Never add \\ on the last empty line of substack, tabular and xymatrix
|
||||
if (asSubstackInset() || asTabularInset() || asXYMatrixInset())
|
||||
last_eoln = false;
|
||||
|
||||
docstring eol;
|
||||
|
||||
if (!rowinfo_[row].crskip_.zero())
|
||||
|
Loading…
Reference in New Issue
Block a user