diff options
author | Miklos Vajna <vmiklos@frugalware.org> | 2012-02-05 14:46:25 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@frugalware.org> | 2012-02-07 09:49:25 +0100 |
commit | f3a91be5fcdcb70ea64fc439d2b2aa4e6a19e421 (patch) | |
tree | 9f6c243b1f2f6cc7fc9acb3b54bcb0761443a351 /sw | |
parent | 7b2ba001768b5edbdd738a2a38508c0a30ab1838 (diff) |
SwXText::convertToTextFrame: pSartTableNode -> pStartTableNode
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/unocore/unotext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/unocore/unotext.cxx b/sw/source/core/unocore/unotext.cxx index db82b1815f89..00c7e0992134 100644 --- a/sw/source/core/unocore/unotext.cxx +++ b/sw/source/core/unocore/unotext.cxx @@ -1603,8 +1603,8 @@ throw (lang::IllegalArgumentException, uno::RuntimeException) // remove the addtional paragraphs in the end if (pStartStartNode->GetStartNodeType() == SwTableBoxStartNode) { - SwTableNode *const pSartTableNode(pStartStartNode->FindTableNode()); - const SwNodeIndex aTblIdx( *pSartTableNode, -1 ); + SwTableNode *const pStartTableNode(pStartStartNode->FindTableNode()); + const SwNodeIndex aTblIdx( *pStartTableNode, -1 ); SwPosition aBefore(aTblIdx); bParaBeforeInserted = GetDoc()->AppendTxtNode( aBefore ); aStartPam.DeleteMark(); |