From: Enrico Forestieri Date: Mon, 5 Jul 2010 12:25:48 +0000 (+0000) Subject: Revert r34761 because that was not the right fix that is going to be X-Git-Tag: 2.0.0~3063 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=d546a9b286b53636ec0c34262942831670d2d167;p=features.git 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 --- diff --git a/src/mathed/InsetMath.h b/src/mathed/InsetMath.h index aae24abd0d..e043a733fb 100644 --- a/src/mathed/InsetMath.h +++ b/src/mathed/InsetMath.h @@ -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; } diff --git a/src/mathed/InsetMathGrid.cpp b/src/mathed/InsetMathGrid.cpp index b4c3b2b611..ad7b1140a4 100644 --- a/src/mathed/InsetMathGrid.cpp +++ b/src/mathed/InsetMathGrid.cpp @@ -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())