From 26273f1c5522e6cccd4acd5e1523b28b277b7331 Mon Sep 17 00:00:00 2001 From: Jochen Nitschke Date: Wed, 25 Jan 2017 20:12:27 +0100 Subject: fix useless assign typo from commit a599196064003b724c8ffe3144b77292a4082df3 Date: Mon Sep 30 14:38:41 2013 +0200 covnert sc/source/filter/inc/namebuff.hxx from String to OUString '=' should have been '+=' was 'aScAbsName.AppendAscii( RTL_CONSTASCII_STRINGPARAM( "_ABS" ) );' Change-Id: Ic9c6dcd5c7871c35ae44e6be0f8314d073a863b3 Reviewed-on: https://gerrit.libreoffice.org/33556 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sc/source/filter/inc/namebuff.hxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sc') diff --git a/sc/source/filter/inc/namebuff.hxx b/sc/source/filter/inc/namebuff.hxx index 13233c77e1ad..8f2b171d74fa 100644 --- a/sc/source/filter/inc/namebuff.hxx +++ b/sc/source/filter/inc/namebuff.hxx @@ -87,12 +87,11 @@ private: Entry( const OUString& rName, const OUString& rScName, const ScComplexRefData& rCRD ) : aStrHashEntry( rName ) , aScComplexRefDataRel( rCRD ) - , aScAbsName( rScName ) + , aScAbsName( rScName + "_ABS" ) , nAbsInd(0) , nRelInd(0) , bSingleRef(false) { - aScAbsName = "_ABS"; } }; -- cgit