summaryrefslogtreecommitdiff
path: root/desktop/source/migration/services/basicmigration.cxx
diff options
context:
space:
mode:
authorGökhan Gurbetoğlu <gokhan.gurbetoglu@pardus.org.tr>2016-08-23 10:23:19 +0300
committerNoel Grandin <noelgrandin@gmail.com>2016-08-24 06:55:00 +0000
commitc899cc46fc6522b7fd7c243bf7a67dfbe2e1e586 (patch)
treeeceb96b16535d86dc810b64aaf102b08bb6825a1 /desktop/source/migration/services/basicmigration.cxx
parent8573b1baa66c65cc170d1393cacf948b4ead3e6a (diff)
tdf#100726 - Improve readability of OUString concatanations
Change-Id: I59c605bb31859a2a419cc9e9e60c174e842a03db Reviewed-on: https://gerrit.libreoffice.org/28349 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'desktop/source/migration/services/basicmigration.cxx')
-rw-r--r--desktop/source/migration/services/basicmigration.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop/source/migration/services/basicmigration.cxx b/desktop/source/migration/services/basicmigration.cxx
index ed454096a874..fb7c7afeb7bc 100644
--- a/desktop/source/migration/services/basicmigration.cxx
+++ b/desktop/source/migration/services/basicmigration.cxx
@@ -132,9 +132,10 @@ namespace migration
::osl::FileBase::RC aResult = ::osl::File::copy( *aI, sTargetName );
if ( aResult != ::osl::FileBase::E_None )
{
- OString aMsg( "BasicMigration::copyFiles: cannot copy " );
- aMsg += OUStringToOString( *aI, RTL_TEXTENCODING_UTF8 ) + " to "
- + OUStringToOString( sTargetName, RTL_TEXTENCODING_UTF8 );
+ OString aMsg = "BasicMigration::copyFiles: cannot copy "
+ + OUStringToOString( *aI, RTL_TEXTENCODING_UTF8 )
+ + " to "
+ + OUStringToOString( sTargetName, RTL_TEXTENCODING_UTF8 );
OSL_FAIL( aMsg.getStr() );
}
++aI;