summaryrefslogtreecommitdiff
path: root/forms/source/component
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-03-16 11:48:08 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-03-16 11:48:08 +0000
commitc5d241998db51b24cb4162dff280e02a0cc377df (patch)
treecd6d8460416defabbe7f8b9feb99cf6ca0217f7a /forms/source/component
parent7fd3d5a15e0ce0ad81659b5b08e1f5fe1b6719c1 (diff)
INTEGRATION: CWS sixtyfour02 (1.3.62); FILE MERGED
2006/02/21 12:15:02 cmc 1.3.62.1: #i62316# match parent signature
Diffstat (limited to 'forms/source/component')
-rw-r--r--forms/source/component/imgprod.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/forms/source/component/imgprod.cxx b/forms/source/component/imgprod.cxx
index f48ebf663283..73ffe508ecc0 100644
--- a/forms/source/component/imgprod.cxx
+++ b/forms/source/component/imgprod.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: imgprod.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 22:50:18 $
+ * last change: $Author: vg $ $Date: 2006-03-16 12:48:08 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -70,8 +70,8 @@ public:
ImgProdLockBytes( ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > & rStreamRef );
virtual ~ImgProdLockBytes();
- virtual ErrCode ReadAt( sal_uInt32 nPos, void* pBuffer, sal_uInt32 nCount, sal_uInt32* pRead ) const;
- virtual ErrCode WriteAt( sal_uInt32 nPos, const void* pBuffer, sal_uInt32 nCount, sal_uInt32* pWritten );
+ virtual ErrCode ReadAt( sal_uInt32 nPos, void* pBuffer, sal_uInt32 nCount, sal_Size* pRead ) const;
+ virtual ErrCode WriteAt( sal_uInt32 nPos, const void* pBuffer, sal_uInt32 nCount, sal_Size* pWritten );
virtual ErrCode Flush() const;
virtual ErrCode SetSize( sal_uInt32 nSize );
virtual ErrCode Stat( SvLockBytesStat*, SvLockBytesStatFlag ) const;
@@ -119,7 +119,7 @@ ImgProdLockBytes::~ImgProdLockBytes()
// ------------------------------------------------------------------------
-ErrCode ImgProdLockBytes::ReadAt( sal_uInt32 nPos, void* pBuffer, sal_uInt32 nCount, sal_uInt32* pRead ) const
+ErrCode ImgProdLockBytes::ReadAt( sal_uInt32 nPos, void* pBuffer, sal_uInt32 nCount, sal_Size* pRead ) const
{
if( GetStream() )
{
@@ -150,7 +150,7 @@ ErrCode ImgProdLockBytes::ReadAt( sal_uInt32 nPos, void* pBuffer, sal_uInt32 nCo
// ------------------------------------------------------------------------
-ErrCode ImgProdLockBytes::WriteAt( sal_uInt32 nPos, const void* pBuffer, sal_uInt32 nCount, sal_uInt32* pWritten )
+ErrCode ImgProdLockBytes::WriteAt( sal_uInt32 nPos, const void* pBuffer, sal_uInt32 nCount, sal_Size* pWritten )
{
if( GetStream() )
return SvLockBytes::WriteAt( nPos, pBuffer, nCount, pWritten );