diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2017-01-25 20:12:27 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-26 06:27:35 +0000 |
commit | 26273f1c5522e6cccd4acd5e1523b28b277b7331 (patch) | |
tree | fc140cb279e9b3a2af02030fd41d377f29e2769b /sc | |
parent | 9c4c20367dd5b74c4302f9bf71030c23c8c49144 (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/inc/namebuff.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
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"; } }; |