summaryrefslogtreecommitdiff
path: root/goodies
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-07-01 22:08:07 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-07-01 22:08:07 +0000
commit229e984da84c128c31fb4c2eb4b19848fa24c471 (patch)
treeb9ca7aa71ece944aa2644a4afbd759312d5ef6b8 /goodies
parentd6c6a93c68c63aaec8bf643d94e1ddf756257d33 (diff)
INTEGRATION: CWS impress143 (1.6.18); FILE MERGED
2008/05/26 12:12:23 sj 1.6.18.1: #i89579# applied patch from cmc (removed unused code)
Diffstat (limited to 'goodies')
-rw-r--r--goodies/source/filter.vcl/icgm/outact.hxx16
-rw-r--r--goodies/source/filter.vcl/idxf/dxfgrprd.hxx12
2 files changed, 2 insertions, 26 deletions
diff --git a/goodies/source/filter.vcl/icgm/outact.hxx b/goodies/source/filter.vcl/icgm/outact.hxx
index 4ef1c7f8cbe9..3a78d6b73199 100644
--- a/goodies/source/filter.vcl/icgm/outact.hxx
+++ b/goodies/source/filter.vcl/icgm/outact.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: outact.hxx,v $
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
* This file is part of OpenOffice.org.
*
@@ -85,7 +85,6 @@ class CGMOutAct
void EndFigure() ;
void RegPolyLine( Polygon&, sal_Bool bReverse = sal_False ) ;
void SetGradientOffset( long nHorzOfs, long nVertOfs, sal_uInt32 nType );
- void SetGradientEdge( long nEdge );
void SetGradientAngle( long nAngle );
void SetGradientDescriptor( sal_uInt32 nColorFrom, sal_uInt32 nColorTo );
void SetGradientStyle( sal_uInt32 nStyle, double fRatio );
@@ -104,18 +103,6 @@ class CGMOutAct
virtual void DrawChart(){} ;
};
-class CGMMetaOutAct : public CGMOutAct
-{
- public:
- CGMMetaOutAct( CGM& rCGM ) ;
- ~CGMMetaOutAct() {} ;
- virtual void DrawRectangle( FloatRect& ) ;
- virtual void DrawBitmap( CGMBitmapDescriptor* ) ;
- virtual void DrawPolygon( Polygon& ) ;
- virtual void DrawPolyLine( Polygon& ) ;
- virtual void DrawPolybezier( Polygon& ) ;
-};
-
class CGMImpressOutAct : public CGMOutAct
{
::com::sun::star::uno::Reference< ::com::sun::star::drawing::XDrawPages > maXDrawPages;
@@ -137,7 +124,6 @@ class CGMImpressOutAct : public CGMOutAct
void ImplSetLineBundle() ;
void ImplSetFillBundle() ;
void ImplSetTextBundle( const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & ) ;
- void ImplGetFrameSet( int NodeNumber, NodeFrameSet& );
public:
CGMImpressOutAct( CGM&, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > & ) ;
~CGMImpressOutAct() {} ;
diff --git a/goodies/source/filter.vcl/idxf/dxfgrprd.hxx b/goodies/source/filter.vcl/idxf/dxfgrprd.hxx
index 13a71f265f52..80a87ba4f4a8 100644
--- a/goodies/source/filter.vcl/idxf/dxfgrprd.hxx
+++ b/goodies/source/filter.vcl/idxf/dxfgrprd.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: dxfgrprd.hxx,v $
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
* This file is part of OpenOffice.org.
*
@@ -84,14 +84,11 @@ public:
// Mit folgenden Methoden koennen die aktuell gespeicherten Werte zu den
// Gruppencodes veraendert werden. (z.B. um Defaultwerte zu setzen, bevor
// 'blind' eine Menge von Gruppen eingelesen wird.)
- void SetI(USHORT nG, long nI);
void SetF(USHORT nG, double fF);
void SetS(USHORT nG, const char * sS); // (wird kopiert)
private:
- void FillIBuff();
- char ReadChar();
void ReadLine(char * ptgt);
long ReadI();
double ReadF();
@@ -156,13 +153,6 @@ inline const char * DXFGroupReader::GetS()
return GetS(nLastG);
}
-inline char DXFGroupReader::ReadChar()
-{
- if (nIBuffPos>=nIBuffSize) FillIBuff();
- return sIBuff[nIBuffPos++];
-}
-
-
#endif