toolkit/source/awt/vclxprinter.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 877663b9c262be9b5d8620f756a4cfdf97195279
Author: Stephan Bergmann <sberg...@redhat.com>
Date:   Thu Jan 19 11:39:15 2012 +0100

    Explicit type in SvStream::operator << call.

diff --git a/toolkit/source/awt/vclxprinter.cxx 
b/toolkit/source/awt/vclxprinter.cxx
index 137c6f6..25a6efb 100644
--- a/toolkit/source/awt/vclxprinter.cxx
+++ b/toolkit/source/awt/vclxprinter.cxx
@@ -269,7 +269,7 @@ void VCLXPrinterPropertySet::selectForm( const 
::rtl::OUString& rFormDescription
     ::osl::MutexGuard aGuard( Mutex );
 
     SvMemoryStream aMem;
-    aMem << BINARYSETUPMARKER;
+    aMem << sal_uInt32(BINARYSETUPMARKER);
     aMem << GetPrinter()->GetJobSetup();
     return ::com::sun::star::uno::Sequence<sal_Int8>( (sal_Int8*) 
aMem.GetData(), aMem.Tell() );
 }
_______________________________________________
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to