From 9ac8a57e52a25870d497241c64bff3da0272cf4d Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Sun, 16 Oct 2016 09:40:42 +0200 Subject: replace <<= with assign for <<= with rhs Any makeAny and Any ctor return an Any Change-Id: Iaa361bc315d785f80153acf1009bf47d109728ec Reviewed-on: https://gerrit.libreoffice.org/29914 Tested-by: Jenkins Reviewed-by: Jochen Nitschke --- sd/source/ui/func/fuhhconv.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sd/source/ui/func') diff --git a/sd/source/ui/func/fuhhconv.cxx b/sd/source/ui/func/fuhhconv.cxx index 26d4026c3a10..bc68ead02288 100644 --- a/sd/source/ui/func/fuhhconv.cxx +++ b/sd/source/ui/func/fuhhconv.cxx @@ -207,8 +207,8 @@ void FuHangulHanjaConversion::StartChineseConversion() Any* pArray = aSeq.getArray(); PropertyValue aParam; aParam.Name = "ParentWindow"; - aParam.Value <<= makeAny(xDialogParentWindow); - pArray[0] <<= makeAny(aParam); + aParam.Value = makeAny(xDialogParentWindow); + pArray[0] = makeAny(aParam); xInit->initialize( aSeq ); //execute dialog -- cgit