Home
last modified time | relevance | path

Searched refs:pSortedObjs (Results 1 – 4 of 4) sorted by relevance

/trunk/main/sw/source/core/layout/
H A Dflylay.cxx668 if ( !pSortedObjs ) in AppendFlyToPage()
669 pSortedObjs = new SwSortedObjs(); in AppendFlyToPage()
674 pSortedObjs->Insert( *pNew ); in AppendFlyToPage()
774 if ( pSortedObjs ) in RemoveFlyFromPage()
776 pSortedObjs->Remove( *pToRemove ); in RemoveFlyFromPage()
777 if ( !pSortedObjs->Count() ) in RemoveFlyFromPage()
778 { DELETEZ( pSortedObjs ); in RemoveFlyFromPage()
826 if ( pSortedObjs ) in MoveFly()
828 pSortedObjs->Remove( *pToMove ); in MoveFly()
829 if ( !pSortedObjs->Count() ) in MoveFly()
[all …]
H A Dcalcmove.cxx674 void lcl_CheckObjects( SwSortedObjs* pSortedObjs, SwFrm* pFrm, long& rBot ) in lcl_CheckObjects() argument
679 for ( sal_uInt16 i = 0; i < pSortedObjs->Count(); ++i ) in lcl_CheckObjects()
683 SwAnchoredObject* pObj = (*pSortedObjs)[i]; in lcl_CheckObjects()
809 if( pSortedObjs && !pFrm->IsHeaderFrm() && in MakeAll()
811 lcl_CheckObjects( pSortedObjs, pFrm, nBot ); in MakeAll()
816 if ( pSortedObjs ) in MakeAll()
817 lcl_CheckObjects( pSortedObjs, this, nBot ); in MakeAll()
H A Dpagechg.cxx199 pSortedObjs( 0 ), in SwPageFrm()
272 if ( pSortedObjs ) in ~SwPageFrm()
277 for ( sal_uInt16 i = 0; i < pSortedObjs->Count(); ++i ) in ~SwPageFrm()
279 SwAnchoredObject* pAnchoredObj = (*pSortedObjs)[i]; in ~SwPageFrm()
282 delete pSortedObjs; in ~SwPageFrm()
283 pSortedObjs = 0; //Auf 0 setzen, sonst rauchts beim Abmdelden von Flys! in ~SwPageFrm()
/trunk/main/sw/source/core/inc/
H A Dpagefrm.hxx64 SwSortedObjs *pSortedObjs; member in SwPageFrm
203 const SwSortedObjs *GetSortedObjs() const { return pSortedObjs; } in GetSortedObjs()
204 SwSortedObjs *GetSortedObjs() { return pSortedObjs; } in GetSortedObjs()