View | Details | Raw Unified | Return to issue 95369
Collapse All | Expand All

(-)a/sw/source/core/layout/trvlfrm.cxx (-2 / +4 lines)
Lines 2064-2072 Link Here
2064
	if ( pStartFrm->IsInFly() )
2064
	if ( pStartFrm->IsInFly() )
2065
	{
2065
	{
2066
        const SwAnchoredObject* pObj = pStartFrm->FindFlyFrm();
2066
        const SwAnchoredObject* pObj = pStartFrm->FindFlyFrm();
2067
        aSortObjs.Insert( *(const_cast<SwAnchoredObject*>(pObj)) );
2067
        ASSERT( pObj, "No Start Object." );
2068
        if (pObj) aSortObjs.Insert( *(const_cast<SwAnchoredObject*>(pObj)) );
2068
        const SwAnchoredObject* pObj2 = pEndFrm->FindFlyFrm();
2069
        const SwAnchoredObject* pObj2 = pEndFrm->FindFlyFrm();
2069
        aSortObjs.Insert( *(const_cast<SwAnchoredObject*>(pObj2)) );
2070
        ASSERT( pObj2, "No Start Object." );
2071
        if (pObj2) aSortObjs.Insert( *(const_cast<SwAnchoredObject*>(pObj2)) );
2070
	}
2072
	}
2071
2073
2072
	//Fall 4: Tabellenselection
2074
	//Fall 4: Tabellenselection

Return to issue 95369