Lines Matching refs:rShell
3289 int SwTransferable::PrivatePaste( SwWrtShell& rShell ) in PrivatePaste() argument
3293 ASSERT( !rShell.ActionPend(), "Paste darf nie eine Actionklammerung haben" ); in PrivatePaste()
3297 const int nSelection = rShell.GetSelectionType(); in PrivatePaste()
3302 SwTrnsfrActionAndUndo aAction( &rShell, UNDO_PASTE_CLIPBOARD); in PrivatePaste()
3308 if( rShell.HasSelection() && !( nSelection & nsSelectionType::SEL_TBL_CELLS)) in PrivatePaste()
3311 rShell.SetRetainSelection( true ); in PrivatePaste()
3312 rShell.DelRight(); in PrivatePaste()
3320 Point aPt( rShell.GetCharRect().Pos() ); in PrivatePaste()
3321 rShell.SwCrsrShell::SetCrsr( aPt, sal_True ); in PrivatePaste()
3323 rShell.SetRetainSelection( false ); in PrivatePaste()
3338 bInWrd = rShell.IsInWrd(); in PrivatePaste()
3339 bEndWrd = rShell.IsEndWrd(); in PrivatePaste()
3343 bSttWrd = rShell.IsSttWrd(); in PrivatePaste()
3345 rShell.SwEditShell::Insert(' '); in PrivatePaste()
3350 int nRet = rShell.Paste( pClpDocFac->GetDoc() ); in PrivatePaste()
3353 rShell.KillPams(); in PrivatePaste()
3357 rShell.SwEditShell::Insert(' '); in PrivatePaste()