summaryrefslogtreecommitdiff
path: root/svtools/source/brwbox
diff options
context:
space:
mode:
authorFakabbir Amin <fakabbir@gmail.com>2017-02-15 15:47:31 +0530
committerStephan Bergmann <sbergman@redhat.com>2017-02-16 08:51:29 +0000
commit9d8c206ee4a5c130e11a4e786b4286f3362f9ca1 (patch)
tree45db907c9dd26bf029d3469166c96b8bdcfac2de /svtools/source/brwbox
parent5986bafea98228fc2552a5d71777ae199d223a2a (diff)
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 <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools/source/brwbox')
-rw-r--r--svtools/source/brwbox/brwbox3.cxx30
1 files changed, 15 insertions, 15 deletions
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: