diff options
author | nadith <nadmalinda@gmail.com> | 2016-08-04 00:11:18 +0530 |
---|---|---|
committer | jan iversen <jani@documentfoundation.org> | 2016-08-04 05:38:19 +0000 |
commit | 51cf057f4e5277ef5ce99c76dd67aeff702a448e (patch) | |
tree | 8c224fcf6507d48fbf01fcdde290091fda0a0f28 | |
parent | def97cb031572b225ad829bb4cf812b1c8e2644c (diff) |
tdf#101185 OString concatanations for efficiently coding
Change-Id: I1d3dd633b7de2dcd64f6cde892da3a5f02fcf80d
Reviewed-on: https://gerrit.libreoffice.org/27844
Reviewed-by: jan iversen <jani@documentfoundation.org>
Tested-by: jan iversen <jani@documentfoundation.org>
-rw-r--r-- | dbaccess/source/core/recovery/settingsimport.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/core/recovery/settingsimport.cxx b/dbaccess/source/core/recovery/settingsimport.cxx index 4063bf2d8628..10675aceda2b 100644 --- a/dbaccess/source/core/recovery/settingsimport.cxx +++ b/dbaccess/source/core/recovery/settingsimport.cxx @@ -102,9 +102,9 @@ namespace dbaccess return new ConfigItemSetImport( m_rSettings ); #if OSL_DEBUG_LEVEL > 0 - OString sMessage( "unknown (or unsupported at this place) element name '" ); - sMessage += OUStringToOString( i_rElementName, RTL_TEXTENCODING_UTF8 ); - sMessage += "', ignoring"; + OString sMessage = "unknown (or unsupported at this place) element name '" + + OUStringToOString( i_rElementName, RTL_TEXTENCODING_UTF8 ) + + "', ignoring"; OSL_FAIL( sMessage.getStr() ); #endif return new IgnoringSettingsImport; |