diff options
author | K_Karthikeyan <karthikeyan@kacst.edu.sa> | 2013-02-25 11:01:46 +0300 |
---|---|---|
committer | Ahmad Harthi <aalharthi@kacst.edu.sa> | 2013-03-04 11:40:18 +0000 |
commit | 45a5dad0460a1a7d1a44716968b8c9ff4a23e04b (patch) | |
tree | 58b0a3187220c002e15f8c7b20892f9bd9691578 | |
parent | 5b04c9063cc9dd77dc55c361df081812af38cdbd (diff) |
Resolves fdo#60554
Resolves fdo#60554 borders disappear while merging cells
Change-Id: I3d3464e8b75cc9b72a1592d8ef276243202e68b8
Reviewed-on: https://gerrit.libreoffice.org/2375
Reviewed-by: Ahmad Harthi <aalharthi@kacst.edu.sa>
Tested-by: Ahmad Harthi <aalharthi@kacst.edu.sa>
-rw-r--r-- | svx/source/table/tablelayouter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/table/tablelayouter.cxx b/svx/source/table/tablelayouter.cxx index cf9e9ede939f..12e108f5cbd1 100644 --- a/svx/source/table/tablelayouter.cxx +++ b/svx/source/table/tablelayouter.cxx @@ -1026,7 +1026,7 @@ void TableLayouter::UpdateBorderLayout() for( aPos.mnCol = 0; aPos.mnCol < nColCount; aPos.mnCol++ ) { CellRef xCell( getCell( aPos ) ); - if( !xCell.is() || xCell->isMerged() ) + if( !xCell.is() ) continue; const SvxBoxItem* pThisAttr = (const SvxBoxItem*)xCell->GetItemSet().GetItem( SDRATTR_TABLE_BORDER ); |