summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpoleobject.hxx
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2012-08-01 18:34:24 +0200
committerThomas Arnhold <thomas@arnhold.org>2012-08-01 18:34:46 +0200
commit791071825969a40a454ed2b9806ec8b5c3b08fe9 (patch)
tree9fee331088d043e2995f0c5b5e7f1c69701dce49 /lotuswordpro/source/filter/lwpoleobject.hxx
parentStaticLibrary too (diff)
downloadcore-791071825969a40a454ed2b9806ec8b5c3b08fe9.tar.gz
core-791071825969a40a454ed2b9806ec8b5c3b08fe9.zip
Remove unused code: those classes are unused
Change-Id: Ibf41655d40c9534629bbb0dd5ae600791b42922d
Diffstat (limited to 'lotuswordpro/source/filter/lwpoleobject.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpoleobject.hxx51
1 files changed, 0 insertions, 51 deletions
diff --git a/lotuswordpro/source/filter/lwpoleobject.hxx b/lotuswordpro/source/filter/lwpoleobject.hxx
index 2756fc8c2353..eec39f5d52cd 100644
--- a/lotuswordpro/source/filter/lwpoleobject.hxx
+++ b/lotuswordpro/source/filter/lwpoleobject.hxx
@@ -127,57 +127,6 @@ private:
Rectangle m_SizeRect;
};
-/**
-* Added by for SODC_2667,03/20/2006
-* Read the OLE Object stream and get the info of the OLE picture
-*/
-#include <tools/stream.hxx>
-#include <vcl/gdimtf.hxx>
-#include <vcl/bitmap.hxx>
-#include <vcl/outdev.hxx>
-class LwpOlePres
-{
- sal_uLong nFormat;
- sal_uInt16 nAspect;
- Bitmap * pBmp;
- GDIMetaFile * pMtf;
-
- sal_uInt32 nAdvFlags;
- sal_Int32 nJobLen;
- sal_uInt8 * pJob;
- Size aSize; // Groesse in 100TH_MM
-public:
- LwpOlePres( sal_uLong nF )
- : nFormat( nF )
- , pBmp( NULL )
- , pMtf( NULL )
- , nAdvFlags( 0x2 ) // in Dokument gefunden
- , nJobLen( 0 )
- , pJob( NULL )
- {}
- ~LwpOlePres()
- {
- delete [] pJob;
- delete pBmp;
- delete pMtf;
- }
- void SetMtf( const GDIMetaFile & rMtf )
- {
- if( pMtf )
- delete pMtf;
- pMtf = new GDIMetaFile( rMtf );
- }
- Bitmap *GetBitmap() const { return pBmp; }
- GDIMetaFile *GetMetaFile() const { return pMtf; }
- sal_uLong GetFormat() const { return nFormat; }
- void SetAspect( sal_uInt16 nAsp ) { nAspect = nAsp; }
- sal_uLong GetAdviseFlags() const { return nAdvFlags; }
- void SetAdviseFlags( sal_uLong nAdv ) { nAdvFlags = nAdv; }
- void SetSize( const Size & rSize ) { aSize = rSize; }
- Size GetSize() const { return aSize; }
-};
-
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */