Kaydet (Commit) 26273f1c authored tarafından Jochen Nitschke's avatar Jochen Nitschke Kaydeden (comit) Noel Grandin

fix useless assign

typo from commit a5991960
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/33556Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 9c4c2036
...@@ -87,12 +87,11 @@ private: ...@@ -87,12 +87,11 @@ private:
Entry( const OUString& rName, const OUString& rScName, const ScComplexRefData& rCRD ) Entry( const OUString& rName, const OUString& rScName, const ScComplexRefData& rCRD )
: aStrHashEntry( rName ) : aStrHashEntry( rName )
, aScComplexRefDataRel( rCRD ) , aScComplexRefDataRel( rCRD )
, aScAbsName( rScName ) , aScAbsName( rScName + "_ABS" )
, nAbsInd(0) , nAbsInd(0)
, nRelInd(0) , nRelInd(0)
, bSingleRef(false) , bSingleRef(false)
{ {
aScAbsName = "_ABS";
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment