diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-01 23:22:59 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-27 16:51:25 +0100 |
commit | 59e3e041ccd119e72dee053172531a59832336c7 (patch) | |
tree | 9ef995f8c829d5ae821e9d821b847ecbccc575de /include | |
parent | 118318e3e9d6ac310861dc87c6219c2120da33fa (diff) |
sal_uIntPtr to sal_uInt32, int to sal_uInt32/sal_uInt64
Change-Id: Ib86d6b63d16f24f3c5e17981562d100e247dc267
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/jobdata.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vcl/jobdata.hxx b/include/vcl/jobdata.hxx index 4244fdbaeda7..771f73c314ea 100644 --- a/include/vcl/jobdata.hxx +++ b/include/vcl/jobdata.hxx @@ -75,8 +75,8 @@ struct VCL_DLLPUBLIC JobData // creates a new buffer using new // it is up to the user to delete it again - bool getStreamBuffer( void*& pData, int& bytes ); - static bool constructFromStreamBuffer( void* pData, int bytes, JobData& rJobData ); + bool getStreamBuffer( void*& pData, sal_uInt32& bytes ); + static bool constructFromStreamBuffer( void* pData, sal_uInt32 bytes, JobData& rJobData ); }; bool operator==(const psp::JobData& rLeft, const psp::JobData& rRight); |