On Thursday 24 November 2005 18:31, Petr Mladek wrote:
> On Thursday 24 November 2005 09:29, you wrote:
> > Dumped CWS sb40 and started from scratch on CWS sb41 (on SRC680m141).
> > The stuff is not yet final (some minor problems with unxsol and
> > wntmsci10 compilers), but you can already check it out and verify that
> > it works for GCC 4.1:
>
> I had to update comphelper/inc/comphelper/types.hxx to build the module
> comphelper. The patch is attached.

Here are two more patches for:
bridges/inc/bridges/remote/marshal.hxx
bridges/inc/bridges/remote/unmarshal.hxx


Best Regards,
Petr
--- bridges/inc/bridges/remote/marshal.hxx.old	2005-11-24 11:47:38.000000000 +0100
+++ bridges/inc/bridges/remote/marshal.hxx	2005-11-24 20:18:14.000000000 +0100
@@ -84,7 +84,7 @@
 template < class C >
 inline void operator <<= (Marshal & r,  C& value)
 {
-	r.pack( &value, getCppuType( &value ) );
+	r.pack( &value, ::cppu::getTypeFavourUnsigned( &value ) );
 }
 
 }
--- bridges/inc/bridges/remote/unmarshal.hxx.old	2005-09-08 00:13:57.000000000 +0200
+++ bridges/inc/bridges/remote/unmarshal.hxx	2005-11-24 20:17:17.000000000 +0100
@@ -84,7 +84,7 @@
 template < class C >
 inline sal_Bool operator >>= (Unmarshal & r, C& value)
 {
-	return r.unpackAndDestruct( &value , getCppuType( &value ) );
+	return r.unpackAndDestruct( &value , ::cppu::getTypeFavourUnsigned( &value ) );
 }
 
 }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to