From d1ea6ecda68bf65b8d90e9ea17fa0a218a92b016 Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Sun, 16 Oct 2016 20:08:47 +0200 Subject: replace <<= with assign for <<= with rhs Any found by deleting specialization of '<<=' template Change-Id: I253f15177ab20fd3ef9baf4158da8c662cb47e6c Reviewed-on: https://gerrit.libreoffice.org/29956 Reviewed-by: Jochen Nitschke Tested-by: Jochen Nitschke --- extensions/source/propctrlr/stringrepresentation.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/source/propctrlr/stringrepresentation.cxx') diff --git a/extensions/source/propctrlr/stringrepresentation.cxx b/extensions/source/propctrlr/stringrepresentation.cxx index ba5355dba21b..39c57ccaabdf 100644 --- a/extensions/source/propctrlr/stringrepresentation.cxx +++ b/extensions/source/propctrlr/stringrepresentation.cxx @@ -490,7 +490,7 @@ uno::Any StringRepresentation::convertStringToSimple( const OUString& _rValue,co if ( *pIter == _rValue ) { OSL_ENSURE(i < m_aConstants.getLength() ,"StringRepresentation::convertSimpleToString: Index is not in range of m_aValues"); - aReturn <<= m_aConstants[i]->getConstantValue(); + aReturn = m_aConstants[i]->getConstantValue(); break; } } -- cgit