diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-19 13:27:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-19 15:37:03 +0200 |
commit | 8169c047116c0a418886d01066a21a6eb18d6549 (patch) | |
tree | 66d481cfced5870ce4eed31f2f2b727bc276bb17 /svl/source | |
parent | ac2c1fb821b45f2382a5104b4d98dc08061ae938 (diff) |
Directly use OUStringBuffer::append overload taking a single sal_Unicode
Change-Id: Ibccde3ec84b0ea4e4af74122013229a1793f5ca5
Reviewed-on: https://gerrit.libreoffice.org/81128
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svl/source')
-rw-r--r-- | svl/source/passwordcontainer/passwordcontainer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/passwordcontainer/passwordcontainer.cxx b/svl/source/passwordcontainer/passwordcontainer.cxx index e72707c58cd8..02947cd3892c 100644 --- a/svl/source/passwordcontainer/passwordcontainer.cxx +++ b/svl/source/passwordcontainer/passwordcontainer.cxx @@ -115,7 +115,7 @@ static std::vector< OUString > getInfoFromInd( const OUString& aInd ) aNum += OUStringChar( pLine[i] ); } - newItem.append( OUStringChar( aNum.toUInt32( 16 ) ) ); + newItem.append( sal_Unicode( aNum.toUInt32( 16 ) ) ); pLine += 3; } |