summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/utbenvs.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/utbenvs.cxx')
-rw-r--r--lotuswordpro/source/filter/utbenvs.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/utbenvs.cxx b/lotuswordpro/source/filter/utbenvs.cxx
index 393e479a9fa1..c2faa3bdb716 100644
--- a/lotuswordpro/source/filter/utbenvs.cxx
+++ b/lotuswordpro/source/filter/utbenvs.cxx
@@ -63,7 +63,7 @@ namespace OpenStormBento
* @param number of bytes to be read
* @return number of bytes read
*/
-sal_uLong LtcUtBenValueStream::GetData( void* pData, sal_uLong nSize )
+std::size_t LtcUtBenValueStream::GetData(void* pData, std::size_t nSize)
{
//unsigned long AmtLeft;
unsigned long AmtRead;
@@ -82,7 +82,7 @@ sal_uLong LtcUtBenValueStream::GetData( void* pData, sal_uLong nSize )
* @param size of buffer to be written
* @return number of bytes written into value stream
*/
-sal_uLong LtcUtBenValueStream::PutData( const void* /*pData*/, sal_uLong nSize )
+std::size_t LtcUtBenValueStream::PutData(const void* /*pData*/, std::size_t nSize)
{
/* Because we only support IMPORT filter, PutData implementation is ignored
It won't bring negative influence to read-only stream object */