Lines Matching refs:rShell
3288 int SwTransferable::PrivatePaste( SwWrtShell& rShell ) in PrivatePaste() argument
3292 ASSERT( !rShell.ActionPend(), "Paste darf nie eine Actionklammerung haben" ); in PrivatePaste()
3296 const int nSelection = rShell.GetSelectionType(); in PrivatePaste()
3301 SwTrnsfrActionAndUndo aAction( &rShell, UNDO_PASTE_CLIPBOARD); in PrivatePaste()
3307 if( rShell.HasSelection() && !( nSelection & nsSelectionType::SEL_TBL_CELLS)) in PrivatePaste()
3310 rShell.SetRetainSelection( true ); in PrivatePaste()
3311 rShell.DelRight(); in PrivatePaste()
3319 Point aPt( rShell.GetCharRect().Pos() ); in PrivatePaste()
3320 rShell.SwCrsrShell::SetCrsr( aPt, sal_True ); in PrivatePaste()
3322 rShell.SetRetainSelection( false ); in PrivatePaste()
3337 bInWrd = rShell.IsInWrd(); in PrivatePaste()
3338 bEndWrd = rShell.IsEndWrd(); in PrivatePaste()
3342 bSttWrd = rShell.IsSttWrd(); in PrivatePaste()
3344 rShell.SwEditShell::Insert(' '); in PrivatePaste()
3349 int nRet = rShell.Paste( pClpDocFac->GetDoc() ); in PrivatePaste()
3352 rShell.KillPams(); in PrivatePaste()
3356 rShell.SwEditShell::Insert(' '); in PrivatePaste()