summaryrefslogtreecommitdiff
path: root/sot/inc/sot/storinfo.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/inc/sot/storinfo.hxx')
-rw-r--r--sot/inc/sot/storinfo.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sot/inc/sot/storinfo.hxx b/sot/inc/sot/storinfo.hxx
index 5f225c26d0de..02db24529129 100644
--- a/sot/inc/sot/storinfo.hxx
+++ b/sot/inc/sot/storinfo.hxx
@@ -39,14 +39,14 @@ class SvStorageInfo
friend class SvStorage;
String aName;
SvGlobalName aClassName;
- sal_uIntPtr nSize;
+ sal_uLong nSize;
sal_Bool bStream:1,
bStorage:1;
SvStorageInfo(){}; // Fuer SvStorage
public:
SvStorageInfo( const StgDirEntry& );
- SvStorageInfo( const String& rName, sal_uIntPtr nSz, sal_Bool bIsStorage )
+ SvStorageInfo( const String& rName, sal_uLong nSz, sal_Bool bIsStorage )
: aName( rName )
, nSize( nSz )
, bStream( !bIsStorage )
@@ -57,7 +57,7 @@ public:
const String & GetName() const { return aName; }
sal_Bool IsStream() const { return bStream; }
sal_Bool IsStorage() const { return bStorage; }
- sal_uIntPtr GetSize() const { return nSize; }
+ sal_uLong GetSize() const { return nSize; }
};
class SOT_DLLPUBLIC SvStorageInfoList
@@ -66,7 +66,7 @@ class SOT_DLLPUBLIC SvStorageInfoList
const SvStorageInfo * Get( const String & rName );
};
-SOT_DLLPUBLIC sal_uIntPtr ReadClipboardFormat( SvStream & rStm );
-SOT_DLLPUBLIC void WriteClipboardFormat( SvStream & rStm, sal_uIntPtr nFormat );
+SOT_DLLPUBLIC sal_uLong ReadClipboardFormat( SvStream & rStm );
+SOT_DLLPUBLIC void WriteClipboardFormat( SvStream & rStm, sal_uLong nFormat );
#endif // _STORINFO_HXX