Index: inc/bridges/remote/context.h =================================================================== RCS file: /cvs/udk/bridges/inc/bridges/remote/context.h,v retrieving revision 1.6 retrieving revision 1.6.20.1 diff -u -r1.6 -r1.6.20.1 --- inc/bridges/remote/context.h 7 Sep 2005 22:11:39 -0000 1.6 +++ inc/bridges/remote/context.h 6 Dec 2005 08:46:20 -0000 1.6.20.1 @@ -189,7 +189,7 @@ extern "C" rtl_uString ** SAL_CALL remote_getContextList( sal_Int32 *pnStringCount, - void * ( SAL_CALL * memAlloc ) ( sal_uInt32 nBytesToAlloc ) ); + void * ( SAL_CALL * memAlloc ) ( sal_Size nBytesToAlloc ) ); struct remote_BridgeImpl; Index: source/remote/context/context.cxx =================================================================== RCS file: /cvs/udk/bridges/source/remote/context/context.cxx,v retrieving revision 1.5 retrieving revision 1.5.18.1 diff -u -r1.5 -r1.5.18.1 --- source/remote/context/context.cxx 7 Sep 2005 22:39:30 -0000 1.5 +++ source/remote/context/context.cxx 6 Dec 2005 08:46:20 -0000 1.5.18.1 @@ -161,7 +161,7 @@ rtl_uString ** getConnectionList( sal_Int32 *pnStringCount , - void * ( SAL_CALL * memAlloc ) ( sal_uInt32 nBytesToAlloc ) ); + void * ( SAL_CALL * memAlloc ) ( sal_Size nBytesToAlloc ) ); private: ::osl::Mutex m_mutex; @@ -286,7 +286,7 @@ rtl_uString ** ContextAdmin::getConnectionList( sal_Int32 *pnStringCount , - void * ( SAL_CALL * memAlloc ) ( sal_uInt32 nBytesToAlloc ) ) + void * ( SAL_CALL * memAlloc ) ( sal_Size nBytesToAlloc ) ) { ::osl::MutexGuard guard( m_mutex ); @@ -519,7 +519,7 @@ extern "C" rtl_uString ** SAL_CALL remote_getContextList( sal_Int32 *pnStringCount, - void * ( SAL_CALL * memAlloc ) ( sal_uInt32 nBytesToAlloc ) ) + void * ( SAL_CALL * memAlloc ) ( sal_Size nBytesToAlloc ) ) { return ContextAdmin::getInstance()->getConnectionList( pnStringCount , memAlloc ); }