diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-21 12:14:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-06-25 13:53:21 +0200 |
commit | 4583911575edf98ccd5b15af8eafa6a3a7b64034 (patch) | |
tree | f3f33e53c45dd870f19e7e42db9bb5b4bf1f23bf /tools | |
parent | 1942182a3d1817bc539229d7fda3af69f7e295b8 (diff) |
improve loplugin:simplifyconstruct
Change-Id: If863d28c6db470faa0d22273020888d4219e069e
Reviewed-on: https://gerrit.libreoffice.org/74559
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qa/cppunit/test_color.cxx | 2 | ||||
-rw-r--r-- | tools/source/inet/inetmime.cxx | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tools/qa/cppunit/test_color.cxx b/tools/qa/cppunit/test_color.cxx index 5bec65027b94..c985e6d0b2bb 100644 --- a/tools/qa/cppunit/test_color.cxx +++ b/tools/qa/cppunit/test_color.cxx @@ -180,7 +180,7 @@ void Test::testGetColorError() void Test::testInvert() { - Color aColor = Color(0xFF, 0x00, 0x88); + Color aColor(0xFF, 0x00, 0x88); aColor.Invert(); CPPUNIT_ASSERT_EQUAL(Color(0x00, 0xFF, 0x77).AsRGBHexString(), aColor.AsRGBHexString()); diff --git a/tools/source/inet/inetmime.cxx b/tools/source/inet/inetmime.cxx index 14ad5b9d1485..97dcfc8a79ea 100644 --- a/tools/source/inet/inetmime.cxx +++ b/tools/source/inet/inetmime.cxx @@ -586,9 +586,7 @@ sal_Unicode const * scanParameters(sal_Unicode const * pBegin, } if (p == pAttributeBegin) break; - OString aAttribute = OString( - pAttributeBegin, p - pAttributeBegin, - RTL_TEXTENCODING_ASCII_US); + OString aAttribute(pAttributeBegin, p - pAttributeBegin, RTL_TEXTENCODING_ASCII_US); if (bDowncaseAttribute) aAttribute = aAttribute.toAsciiLowerCase(); |