From fee4b54d1c0eaf37dc1a08e4570642028a5c19fb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Jul 2019 17:49:49 +0200 Subject: Improved loplugin:stringconstant (now that GCC 7 supports it): sax Change-Id: I2b8122f9633a0c4450e7a453abdb15f14c16d178 Reviewed-on: https://gerrit.libreoffice.org/76655 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- sax/source/tools/converter.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sax/source/tools/converter.cxx') diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx index cfd3b3083d40..956cdc097348 100644 --- a/sax/source/tools/converter.cxx +++ b/sax/source/tools/converter.cxx @@ -427,12 +427,12 @@ void Converter::convertMeasure( OUStringBuffer& rBuffer, static OUString getTrueString() { - return OUString( "true" ); + return "true"; } static OUString getFalseString() { - return OUString( "false" ); + return "false"; } /** convert string to boolean */ -- cgit