more ws (test)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7148 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-06-11 15:34:26 +00:00
parent 2dc7727ccf
commit 0aa5aa5ddc

View File

@ -2519,9 +2519,8 @@ void LyXTabular::Validate(LaTeXFeatures & features) const
if (NeedRotating())
features.require("rotating");
for (int cell = 0; cell < numberofcells; ++cell) {
if ( (GetVAlignment(cell) != LYX_VALIGN_TOP) ||
( !(GetPWidth(cell).zero())&&!(IsMultiColumn(cell)) )
)
if ((GetVAlignment(cell) != LYX_VALIGN_TOP) ||
(!(GetPWidth(cell).zero())&&!(IsMultiColumn(cell))))
features.require("array");
GetCellInset(cell)->validate(features);
}