diff options
author | os <os@openoffice.org> | 2010-04-21 10:36:21 +0200 |
---|---|---|
committer | os <os@openoffice.org> | 2010-04-21 10:36:21 +0200 |
commit | 7ab5dbca4cc55b65bf12cd742602d60fa475fbd0 (patch) | |
tree | 5d813115bb76a3035858f68e0bfe9148aa75835c | |
parent | a7d00bac2385bd37f4956e2df8027cac6dd471bb (diff) | |
parent | 82071aac2264b925f3e7a18cc59241d2ce4b40ba (diff) |
change of issue 107843 merged
-rw-r--r-- | sw/source/core/unocore/unotbl.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unotbl.cxx b/sw/source/core/unocore/unotbl.cxx index 9290339d2b..9dd21a4e88 100644 --- a/sw/source/core/unocore/unotbl.cxx +++ b/sw/source/core/unocore/unotbl.cxx @@ -3360,8 +3360,8 @@ void SwXTextTable::setPropertyValue(const OUString& rPropertyName, pUnoCrsr->Move( fnMoveForward, fnGoNode ); pUnoCrsr->SetRemainInSection( sal_False ); - SwTableLine* pLastLine = rLines[rLines.Count() - 1]; - SwTableBoxes &rBoxes = pLastLine->GetTabBoxes(); + + const SwTableBox* pBRBox = lcl_FindCornerTableBox(rLines, false); pUnoCrsr->SetMark(); pUnoCrsr->GetPoint()->nNode = *pBRBox->GetSttNd(); |