summaryrefslogtreecommitdiffstats
path: root/sw/source/core/crsr/findattr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/crsr/findattr.cxx')
-rw-r--r--sw/source/core/crsr/findattr.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/crsr/findattr.cxx b/sw/source/core/crsr/findattr.cxx
index 626a590a07b2..43ce670499d8 100644
--- a/sw/source/core/crsr/findattr.cxx
+++ b/sw/source/core/crsr/findattr.cxx
@@ -109,7 +109,7 @@ static void lcl_SetAttrPam( SwPaM& rPam, sal_Int32 nStart, const sal_Int32* pEnd
nContentPos = rPam.GetPoint()->GetContentIndex();
bool bTstEnd = rPam.GetPoint()->nNode == rPam.GetMark()->nNode;
- SwContentNode* pCNd = rPam.GetContentNode();
+ SwContentNode* pCNd = rPam.GetPointContentNode();
rPam.GetPoint()->nContent.Assign( pCNd, nStart );
rPam.SetMark(); // Point == GetMark
@@ -928,14 +928,14 @@ bool FindAttrImpl(SwPaM & rSearchPam,
// if at beginning/end then move it out of the node
if( bSrchForward
- ? oPam->GetPoint()->GetContentIndex() == oPam->GetContentNode()->Len()
+ ? oPam->GetPoint()->GetContentIndex() == oPam->GetPointContentNode()->Len()
: !oPam->GetPoint()->GetContentIndex() )
{
if( !(*fnMove.fnNds)( &oPam->GetPoint()->nNode, false ))
{
return false;
}
- SwContentNode *pNd = oPam->GetContentNode();
+ SwContentNode *pNd = oPam->GetPointContentNode();
oPam->GetPoint()->nContent.Assign( pNd, bSrchForward ? 0 : pNd->Len() );
}
@@ -1066,14 +1066,14 @@ static bool FindAttrsImpl(SwPaM & rSearchPam,
// if at beginning/end then move it out of the node
if( bMoveFirst &&
( bSrchForward
- ? oPam->GetPoint()->GetContentIndex() == oPam->GetContentNode()->Len()
+ ? oPam->GetPoint()->GetContentIndex() == oPam->GetPointContentNode()->Len()
: !oPam->GetPoint()->GetContentIndex() ) )
{
if( !(*fnMove.fnNds)( &oPam->GetPoint()->nNode, false ))
{
return false;
}
- SwContentNode *pNd = oPam->GetContentNode();
+ SwContentNode *pNd = oPam->GetPointContentNode();
oPam->GetPoint()->nContent.Assign( pNd, bSrchForward ? 0 : pNd->Len() );
}