Kaydet (Commit) d761d5e2 authored tarafından Matúš Kukan's avatar Matúš Kukan

error: no matching function for call to..

Change-Id: I4792f9deb162c5e7bde16e54a55f80a83eb90b70
üst 3e71c106
......@@ -359,14 +359,14 @@ OslStream::~OslStream()
sal_Size OslStream::GetData(void* pData, sal_Size nSize)
{
sal_Size nBytesRead = nSize;
sal_uInt64 nBytesRead = nSize;
maFile.read( pData, nBytesRead, nBytesRead );
return nBytesRead;
}
sal_Size OslStream::PutData(const void* pData, sal_Size nSize)
{
sal_Size nBytesWritten;
sal_uInt64 nBytesWritten;
maFile.write( pData, nSize, nBytesWritten );
return nBytesWritten;
}
......
......@@ -1110,7 +1110,7 @@ bool TIFFReader::HasAlphaChannel() const
sal_Bool TIFFReader::ReadTIFF(SvStream & rTIFF, Graphic & rGraphic )
{
sal_uInt16 i, nNumTags, nTagType;
sal_uLong nMaxPos;
sal_uInt64 nMaxPos;
sal_uLong nPos;
sal_uInt32 nFirstIfd, nDataLen;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment