diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-01-19 11:39:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-01-19 11:39:15 +0100 |
commit | 877663b9c262be9b5d8620f756a4cfdf97195279 (patch) | |
tree | b1650406ab3baa0a3e209d047756a4a668d0adb6 /toolkit | |
parent | c4e5e06ecca8c7f7f83e2e6e784157a3f2a93ef8 (diff) |
Explicit type in SvStream::operator << call.
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxprinter.cxx | 2 |
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() ); } |