diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:54:23 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:54:23 +0000 |
commit | 432b205a6c2356905851974308aaac6a3a574871 (patch) | |
tree | dbed57e8b454dc2a38e41cd7142d3a38087a5c4b /sw/source | |
parent | 50e48096eea9e29f839e947c3ed15e9358c8a228 (diff) |
INTEGRATION: CWS tune05 (1.76.54); FILE MERGED
2004/07/23 16:18:02 mhu 1.76.54.2: RESYNC: (1.76-1.77); FILE MERGED
2004/06/24 11:01:12 cmc 1.76.54.1: #i30554# lcl_IsFlyInFlyHere unused
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/ww8/wrtw8esh.cxx | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/sw/source/filter/ww8/wrtw8esh.cxx b/sw/source/filter/ww8/wrtw8esh.cxx index c1c385894b78..19e4279a2208 100644 --- a/sw/source/filter/ww8/wrtw8esh.cxx +++ b/sw/source/filter/ww8/wrtw8esh.cxx @@ -2,9 +2,9 @@ * * $RCSfile: wrtw8esh.cxx,v $ * - * $Revision: 1.77 $ + * $Revision: 1.78 $ * - * last change: $Author: rt $ $Date: 2004-06-17 13:47:45 $ + * last change: $Author: obo $ $Date: 2004-08-12 12:54:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -898,24 +898,6 @@ UINT32 SwWW8Writer::GetSdrOrdNum( const SwFrmFmt& rFmt ) const return nOrdNum; } -static bool lcl_IsFlyInFlyHere(const SwFrmFmt* pFmt, ULONG nStart, ULONG nEnd) -{ - bool bRet = false; - const SwFmtAnchor* pAnchor = &pFmt->GetAnchor(); - const SwPosition* pAPos; - ULONG nIdx; - if( ( pAnchor->GetAnchorId() == FLY_AT_CNTNT || - pAnchor->GetAnchorId() == FLY_AT_FLY || - pAnchor->GetAnchorId() == FLY_AUTO_CNTNT ) && - 0 != ( pAPos = pAnchor->GetCntntAnchor()) && - nStart <= ( nIdx = pAPos->nNode.GetIndex()) && - nIdx < nEnd ) - { - bRet = true; - } - return bRet; -} - void SwWW8Writer::AppendFlyInFlys(const sw::Frame& rFrmFmt, const Point& rNdTopLeft) { |