summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/stgstrms.hxx
diff options
context:
space:
mode:
authorCarsten Driesner <cd@openoffice.org>2011-01-12 16:31:19 +0100
committerCarsten Driesner <cd@openoffice.org>2011-01-12 16:31:19 +0100
commitcaa3d247d2ff8d34881e5fdb2edd4d153c2725c0 (patch)
tree5f7a338347960600b4aa9fb5bc30c8dfd0454f2c /sot/source/sdstor/stgstrms.hxx
parent15e0ed81e377962c1f054d581e26d8038e50c73c (diff)
removetooltypes01: #i112600# Exchange misleading sal_uIntPtr with sal_uLong in sot
Diffstat (limited to 'sot/source/sdstor/stgstrms.hxx')
-rw-r--r--sot/source/sdstor/stgstrms.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sot/source/sdstor/stgstrms.hxx b/sot/source/sdstor/stgstrms.hxx
index 1ececadae35e..a1bb0707cdd7 100644
--- a/sot/source/sdstor/stgstrms.hxx
+++ b/sot/source/sdstor/stgstrms.hxx
@@ -154,17 +154,17 @@ class StgTmpStrm : public SvMemoryStream
String aName;
SvFileStream* pStrm;
using SvMemoryStream::GetData;
- virtual sal_uIntPtr GetData( void* pData, sal_uIntPtr nSize );
- virtual sal_uIntPtr PutData( const void* pData, sal_uIntPtr nSize );
- virtual sal_uIntPtr SeekPos( sal_uIntPtr nPos );
+ virtual sal_uLong GetData( void* pData, sal_uLong nSize );
+ virtual sal_uLong PutData( const void* pData, sal_uLong nSize );
+ virtual sal_uLong SeekPos( sal_uLong nPos );
virtual void FlushData();
public:
- StgTmpStrm( sal_uIntPtr=16 );
+ StgTmpStrm( sal_uLong=16 );
~StgTmpStrm();
sal_Bool Copy( StgTmpStrm& );
- void SetSize( sal_uIntPtr );
- sal_uIntPtr GetSize() const;
+ void SetSize( sal_uLong );
+ sal_uLong GetSize() const;
};
#endif