From c648d0872058941ed18499a8bf1993037d9b5532 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 14 Jan 2014 13:52:54 +0200 Subject: convert SvStream::operator<< overloads to more explicit methods This is in preparation for more conversion of SvStream::operator<< calls to use more explicit method names. This converts the subclasses that have their own convenience overloads of operator<< to use normal methods. Change-Id: I5efd5d9a24c264cb86d2471303dd5849bf91ba80 --- 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 f0baf31e511a..0532e6272879 100644 --- a/toolkit/source/awt/vclxprinter.cxx +++ b/toolkit/source/awt/vclxprinter.cxx @@ -241,7 +241,7 @@ void VCLXPrinterPropertySet::selectForm( const OUString& rFormDescription ) thro SvMemoryStream aMem; aMem.WriteUInt32( sal_uInt32(BINARYSETUPMARKER) ); - aMem << GetPrinter()->GetJobSetup(); + WriteJobSetup( aMem, GetPrinter()->GetJobSetup() ); return ::com::sun::star::uno::Sequence( (sal_Int8*) aMem.GetData(), aMem.Tell() ); } -- cgit