Lines Matching refs:aPrevSel

2160         TextSelection aPrevSel( mpImpl->maSelection );  in drop()  local
2161 aPrevSel.Justify(); in drop()
2163 … sal_uInt16 nPrevStartParaLen = mpImpl->mpTextEngine->GetTextLen( aPrevSel.GetStart().GetPara() ); in drop()
2204 if ( aPrevSel.HasRange() && in drop()
2209 if ( ( mpImpl->mpDDInfo->maDropPos.GetPara() < aPrevSel.GetStart().GetPara() ) || in drop()
2210 ( ( mpImpl->mpDDInfo->maDropPos.GetPara() == aPrevSel.GetStart().GetPara() ) in drop()
2211 … && ( mpImpl->mpDDInfo->maDropPos.GetIndex() < aPrevSel.GetStart().GetIndex() ) ) ) in drop()
2216 aPrevSel.GetStart().GetPara() += nNewParasBeforeSelection; in drop()
2217 aPrevSel.GetEnd().GetPara() += nNewParasBeforeSelection; in drop()
2219 if ( mpImpl->mpDDInfo->maDropPos.GetPara() == aPrevSel.GetStart().GetPara() ) in drop()
2222 … mpImpl->mpTextEngine->GetTextLen( aPrevSel.GetStart().GetPara() ) - nPrevStartParaLen; in drop()
2224 aPrevSel.GetStart().GetIndex() = in drop()
2225 aPrevSel.GetStart().GetIndex() + nNewChars; in drop()
2226 if ( aPrevSel.GetStart().GetPara() == aPrevSel.GetEnd().GetPara() ) in drop()
2227 aPrevSel.GetEnd().GetIndex() = in drop()
2228 aPrevSel.GetEnd().GetIndex() + nNewChars; in drop()
2235 aPaM.GetPara() -= ( aPrevSel.GetEnd().GetPara() - aPrevSel.GetStart().GetPara() ); in drop()
2236 if ( aPrevSel.GetEnd().GetPara() == mpImpl->mpDDInfo->maDropPos.GetPara() ) in drop()
2239 aPaM.GetIndex() - aPrevSel.GetEnd().GetIndex(); in drop()
2240 if ( aPrevSel.GetStart().GetPara() == mpImpl->mpDDInfo->maDropPos.GetPara() ) in drop()
2242 aPaM.GetIndex() + aPrevSel.GetStart().GetIndex(); in drop()
2247 mpImpl->mpTextEngine->ImpDeleteText( aPrevSel ); in drop()