From 9d8c206ee4a5c130e11a4e786b4286f3362f9ca1 Mon Sep 17 00:00:00 2001 From: Fakabbir Amin Date: Wed, 15 Feb 2017 15:47:31 +0530 Subject: tdf#100726 Improved readability of OUString concatenations Cleanup in filter, framework and svtools directory. Change-Id: Icf4f04cff1207e58ce55ea3dc8c21b0635c3b6ec Reviewed-on: https://gerrit.libreoffice.org/34298 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- svtools/source/brwbox/brwbox3.cxx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'svtools/source/brwbox') diff --git a/svtools/source/brwbox/brwbox3.cxx b/svtools/source/brwbox/brwbox3.cxx index faaf3a31d5cc..b0f5d518e849 100644 --- a/svtools/source/brwbox/brwbox3.cxx +++ b/svtools/source/brwbox/brwbox3.cxx @@ -235,11 +235,11 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e else aRetText = "TableCell"; #if OSL_DEBUG_LEVEL > 0 - aRetText += " ["; - aRetText += OUString::number(sal_Int32(GetCurRow())); - aRetText += ","; - aRetText += OUString::number(sal_Int32(GetCurColumnId())); - aRetText += "]"; + aRetText += " [" + + OUString::number(sal_Int32(GetCurRow())) + + "," + + OUString::number(sal_Int32(GetCurColumnId())) + + "]"; #endif break; case ::svt::BBTYPE_ROWHEADERCELL: @@ -248,21 +248,21 @@ OUString BrowseBox::GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType e aRetText = OUString::number( rowId ); } #if OSL_DEBUG_LEVEL > 0 - aRetText += " ["; - aRetText += OUString::number(sal_Int32(GetCurRow())); - aRetText += ","; - aRetText += OUString::number(sal_Int32(GetCurColumnId())); - aRetText += "]"; + aRetText += " [" + + OUString::number(sal_Int32(GetCurRow())) + + "," + + OUString::number(sal_Int32(GetCurColumnId())) + + "]"; #endif break; case ::svt::BBTYPE_COLUMNHEADERCELL: aRetText = GetColumnDescription( sal_Int16( _nPosition ) ); #if OSL_DEBUG_LEVEL > 0 - aRetText += " ["; - aRetText += OUString::number(sal_Int32(GetCurRow())); - aRetText += ","; - aRetText += OUString::number(sal_Int32(GetCurColumnId())); - aRetText += "]"; + aRetText += " [" + + OUString::number(sal_Int32(GetCurRow())) + + "," + + OUString::number(sal_Int32(GetCurColumnId())) + + "]"; #endif break; default: -- cgit