From 877663b9c262be9b5d8620f756a4cfdf97195279 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 19 Jan 2012 11:39:15 +0100 Subject: Explicit type in SvStream::operator << call. --- toolkit/source/awt/vclxprinter.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toolkit') diff --git a/toolkit/source/awt/vclxprinter.cxx b/toolkit/source/awt/vclxprinter.cxx index 137c6f66b124..25a6efb54bdf 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*) aMem.GetData(), aMem.Tell() ); } -- cgit