summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwpoleobject.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2011-03-13 06:49:58 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2011-03-13 06:49:58 -0500
commit8021c2f31277989f87ca8224234358760bb3c865 (patch)
tree9675645b64b705b590bf1f68556414bd6caecda9 /lotuswordpro/source/filter/lwpoleobject.hxx
parentfix mis-merge in oox (diff)
downloadcore-8021c2f31277989f87ca8224234358760bb3c865.tar.gz
core-8021c2f31277989f87ca8224234358760bb3c865.zip
convert tools type in lotuswordpro
Diffstat (limited to 'lotuswordpro/source/filter/lwpoleobject.hxx')
-rw-r--r--lotuswordpro/source/filter/lwpoleobject.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/lotuswordpro/source/filter/lwpoleobject.hxx b/lotuswordpro/source/filter/lwpoleobject.hxx
index d330cd3fbd9a..7e40d43f6c94 100644
--- a/lotuswordpro/source/filter/lwpoleobject.hxx
+++ b/lotuswordpro/source/filter/lwpoleobject.hxx
@@ -146,17 +146,17 @@ private:
#include <vcl/outdev.hxx>
class LwpOlePres
{
- ULONG nFormat;
- USHORT nAspect;
+ sal_uLong nFormat;
+ sal_uInt16 nAspect;
Bitmap * pBmp;
GDIMetaFile * pMtf;
- UINT32 nAdvFlags;
- INT32 nJobLen;
- BYTE * pJob;
+ sal_uInt32 nAdvFlags;
+ sal_Int32 nJobLen;
+ sal_uInt8 * pJob;
Size aSize; // Groesse in 100TH_MM
public:
- LwpOlePres( ULONG nF )
+ LwpOlePres( sal_uLong nF )
: nFormat( nF )
, pBmp( NULL )
, pMtf( NULL )
@@ -178,14 +178,14 @@ public:
}
Bitmap *GetBitmap() const { return pBmp; }
GDIMetaFile *GetMetaFile() const { return pMtf; }
- ULONG GetFormat() const { return nFormat; }
- void SetAspect( USHORT nAsp ) { nAspect = nAsp; }
- ULONG GetAdviseFlags() const { return nAdvFlags; }
- void SetAdviseFlags( ULONG nAdv ) { nAdvFlags = nAdv; }
+ 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; } //Add by , 10/26/2005
/// return FALSE => unknown format
- BOOL Read( SvStream & rStm );
+ sal_Bool Read( SvStream & rStm );
void Write( SvStream & rStm );
};
//End by