summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-03-24 19:12:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-03-25 07:27:34 +0000
commit3a0c5b782001fc398740b46f2adc9e07055505d6 (patch)
tree508da0c4db6b64d4e920d58a01b37995649a6b52 /extensions/source/propctrlr
parentf2b027d5cdaf0e88d1fe47c4d89ef57c03b1f9b8 (diff)
loplugin:stringadd in editeng..framework
after my patch to merge the bufferadd loplugin into stringadd Change-Id: Ieac16a01fde6467a2f6fe47864069304a3c44e47 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149552 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'extensions/source/propctrlr')
-rw-r--r--extensions/source/propctrlr/eventhandler.cxx6
-rw-r--r--extensions/source/propctrlr/formcomponenthandler.cxx9
-rw-r--r--extensions/source/propctrlr/standardcontrol.cxx4
-rw-r--r--extensions/source/propctrlr/stringrepresentation.cxx3
4 files changed, 7 insertions, 15 deletions
diff --git a/extensions/source/propctrlr/eventhandler.cxx b/extensions/source/propctrlr/eventhandler.cxx
index ea99755244af..136dcb35dac3 100644
--- a/extensions/source/propctrlr/eventhandler.cxx
+++ b/extensions/source/propctrlr/eventhandler.cxx
@@ -131,8 +131,7 @@ namespace pcr
,sUniqueBrowseId(std::move( _sUniqueBrowseId ))
,nId( _nId )
{
- OUStringBuffer aQualifiedListenerClass;
- aQualifiedListenerClass.append( "com.sun.star." );
+ OUStringBuffer aQualifiedListenerClass( "com.sun.star." );
aQualifiedListenerClass.appendAscii( _pListenerNamespaceAscii );
aQualifiedListenerClass.append( "." );
aQualifiedListenerClass.appendAscii( _pListenerClassAsciiName );
@@ -608,8 +607,7 @@ namespace pcr
OSL_ENSURE( !sLocation.isEmpty(), "EventHandler::convertToControlValue: unexpected: no location!" );
if ( !sLocation.isEmpty() )
{
- aComposeBuffer.append( sLocation );
- aComposeBuffer.append( ", " );
+ aComposeBuffer.append( sLocation + ", " );
}
// language
diff --git a/extensions/source/propctrlr/formcomponenthandler.cxx b/extensions/source/propctrlr/formcomponenthandler.cxx
index 81f90518d2c5..9385d0bdc5af 100644
--- a/extensions/source/propctrlr/formcomponenthandler.cxx
+++ b/extensions/source/propctrlr/formcomponenthandler.cxx
@@ -739,8 +739,7 @@ namespace pcr
else
{
// font name
- displayName.append( aFont.Name );
- displayName.append( ", " );
+ displayName.append( aFont.Name + ", " );
// font style
::FontWeight eWeight = vcl::unohelper::ConvertFontWeight( aFont.Weight );
@@ -762,8 +761,7 @@ namespace pcr
// font size
if ( aFont.Height )
{
- displayName.append( ", " );
- displayName.append( sal_Int32( aFont.Height ) );
+ displayName.append( ", " + OUString::number( sal_Int32( aFont.Height ) ) );
}
}
@@ -2526,8 +2524,7 @@ namespace pcr
OUStringBuffer sTemp;
if ( bAdd )
{
- sTemp.append(_sName);
- sTemp.append("/");
+ sTemp.append(OUString::Concat(_sName) + "/");
}
sTemp.append(rQueryName);
Reference< XNameAccess > xSubQueries(_xQueryNames->getByName(rQueryName),UNO_QUERY);
diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx
index 95b4143c76b8..9468ecc56745 100644
--- a/extensions/source/propctrlr/standardcontrol.cxx
+++ b/extensions/source/propctrlr/standardcontrol.cxx
@@ -724,9 +724,7 @@ namespace pcr
{
if ( strings != _rStrings.begin() )
aComposed.append( ';' );
- aComposed.append( '\"' );
- aComposed.append( *strings );
- aComposed.append( '\"' );
+ aComposed.append( "\"" + *strings + "\"" );
}
return aComposed.makeStringAndClear();
}
diff --git a/extensions/source/propctrlr/stringrepresentation.cxx b/extensions/source/propctrlr/stringrepresentation.cxx
index 30dbde907733..6f40c09c9d84 100644
--- a/extensions/source/propctrlr/stringrepresentation.cxx
+++ b/extensions/source/propctrlr/stringrepresentation.cxx
@@ -329,8 +329,7 @@ namespace
// (separated by a line break)
for (const auto& rElement : _rElements)
{
- sCompose.append(OUString(_rTransformer(rElement)));
- sCompose.append("\n");
+ sCompose.append(OUString(_rTransformer(rElement)) + "\n");
}
sCompose.stripEnd('\n');