diff options
author | Arnold Dumas <arnold@dumas.at> | 2016-02-14 00:59:35 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-02-15 07:38:21 +0000 |
commit | 53bf3ea58e0f4f9f4399a44bfc9ddecc71cb54c7 (patch) | |
tree | 4494dab5e2cdd2b56af5ad851866128315532f5e /dbaccess | |
parent | f48b789e1b985f65be2c15e508202ccf9ec05102 (diff) |
tdf#57950: Replace chained O(U)StringBuffer::append() with operator+
Change-Id: Ic76cf0130ebec4cf723b83d82f59ae45bfcb3ea1
Reviewed-on: https://gerrit.libreoffice.org/22350
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/ext/macromigration/migrationengine.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ext/macromigration/migrationengine.cxx b/dbaccess/source/ext/macromigration/migrationengine.cxx index 2aa941cc7e4c..94dd12c650a1 100644 --- a/dbaccess/source/ext/macromigration/migrationengine.cxx +++ b/dbaccess/source/ext/macromigration/migrationengine.cxx @@ -991,7 +991,7 @@ namespace dbmm { const OUString sHierarhicalBase( _rContainerLoc.isEmpty() ? OUString() : - OUStringBuffer( _rContainerLoc ).append( "/" ).makeStringAndClear()); + OUString( _rContainerLoc + "/" ) ); Sequence< OUString > aElementNames( _rxContainer->getElementNames() ); for ( const OUString* elementName = aElementNames.getConstArray(); |