summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-07-01 22:02:39 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-07-01 22:02:39 +0000
commit2217e2a2376ef45edec58b7a619a25f5fd9337c5 (patch)
treeffdddbcd27050a6d99e01212b25d4b7d4142245e /goodies
parent621a3410f6ee9ab21bc6ff3b9cfa60fb7b9cf302 (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.cxx23
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 1ba34ffcae45..b176d186a217 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);