[Libreoffice-commits] .: toolkit/source

Stephan Bergmann sbergmann at kemper.freedesktop.org
Thu Jan 19 02:39:24 PST 2012


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

New commits:
commit 877663b9c262be9b5d8620f756a4cfdf97195279
Author: Stephan Bergmann <sbergman at 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() );
 }


More information about the Libreoffice-commits mailing list