summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-19 11:39:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-19 11:39:15 +0100
commit877663b9c262be9b5d8620f756a4cfdf97195279 (patch)
treeb1650406ab3baa0a3e209d047756a4a668d0adb6 /toolkit
parentc4e5e06ecca8c7f7f83e2e6e784157a3f2a93ef8 (diff)
Explicit type in SvStream::operator << call.
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/source/awt/vclxprinter.cxx2
1 files changed, 1 insertions, 1 deletions
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>( (sal_Int8*) aMem.GetData(), aMem.Tell() );
}