Lines Matching refs:pDestShell
149 long SwEditShell::Copy( SwEditShell* pDestShell ) in Copy() argument
151 if( !pDestShell ) in Copy()
152 pDestShell = this; in Copy()
154 SET_CURR_SHELL( pDestShell ); in Copy()
168 if( pDestShell == this ) in Copy()
176 pPos = pDestShell->GetCrsr()->GetPoint(); in Copy()
196 if( pDestShell->GetDoc() == GetDoc() && in Copy()
202 pDestShell->StartAllAction(); in Copy()
206 SwNodeIndex aSttNdIdx( pDestShell->GetDoc()->GetNodes() ); in Copy()
211 pDestShell->GetDoc()->GetIDocumentUndoRedo().StartUndo( UNDO_START, NULL ); in Copy()
216 if( pDestShell == this ) in Copy()
224 pPos = pDestShell->GetCrsr()->GetPoint(); in Copy()
255 pDestShell->GetDoc()->MakeUniqueNumRules(aInsertPaM); in Copy()
264 SwPaM* pCrsr = pDestShell->GetCrsr(); in Copy()
274 pDestShell->GetCrsr()->SetMark(); in Copy()
275 pDestShell->GetCrsr()->DeleteMark(); in Copy()
280 SwPaM* pCmp = (SwPaM*)pDestShell->GetCrsr(); // sicher den Pointer auf Cursor in Copy()
288 } while( pDestShell->GetCrsr() != ( pCmp = (SwPaM*)pCmp->GetNext() ) ); in Copy()
293 pDestShell->GetDoc()->GetIDocumentUndoRedo().EndUndo( UNDO_END, NULL ); in Copy()
294 pDestShell->EndAllAction(); in Copy()
296 pDestShell->SaveTblBoxCntnt( pDestShell->GetCrsr()->GetPoint() ); in Copy()