diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-07-01 22:02:39 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-07-01 22:02:39 +0000 |
commit | 2a05eb08575a2b148539e371dad86137306aeb2b (patch) | |
tree | 94793c99459992f50ea6ff305080cfe1585837fd /goodies | |
parent | 476144433956dd1dc0c31c09726ef23a6bf2f62d (diff) |
INTEGRATION: CWS impress143 (1.20.18); FILE MERGED
2008/05/26 12:12:21 sj 1.20.18.1: #i89579# applied patch from cmc (removed unused code)
Diffstat (limited to 'goodies')
-rw-r--r-- | goodies/source/filter.vcl/eos2met/eos2met.cxx | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/goodies/source/filter.vcl/eos2met/eos2met.cxx b/goodies/source/filter.vcl/eos2met/eos2met.cxx index 78389b5df2..ace201905d 100644 --- a/goodies/source/filter.vcl/eos2met/eos2met.cxx +++ b/goodies/source/filter.vcl/eos2met/eos2met.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: eos2met.cxx,v $ - * $Revision: 1.20 $ + * $Revision: 1.21 $ * * This file is part of OpenOffice.org. * @@ -223,8 +223,6 @@ private: void METLineAtCurPos(Point aPt); void METBox(BOOL bFill, BOOL bBoundary, Rectangle aRect, sal_uInt32 nHAxis, sal_uInt32 nVAxis); - void METArc(Point aP0, Point aP1, Point aP2); - void METArcAtCurPos(Point aP1, Point aP2); void METFullArc(Point aCenter, double fMultiplier); void METPartialArcAtCurPos(Point aCenter, double fMultiplier, double fStartAngle, double fSweepAngle); @@ -1333,25 +1331,6 @@ void METWriter::METBox(BOOL bFill, BOOL bBoundary, } -void METWriter::METArc(Point aP0, Point aP1, Point aP2) -{ - WillWriteOrder(26); - *pMET << (BYTE)0xc6 << (BYTE)24; - WritePoint(aP0); - WritePoint(aP1); - WritePoint(aP2); -} - - -void METWriter::METArcAtCurPos(Point aP1, Point aP2) -{ - WillWriteOrder(18); - *pMET << (BYTE)0x86 << (BYTE)16; - WritePoint(aP1); - WritePoint(aP2); -} - - void METWriter::METFullArc(Point aCenter, double fMultiplier) { WillWriteOrder(14); |