diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:49:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 12:55:55 +0200 |
commit | fee4b54d1c0eaf37dc1a08e4570642028a5c19fb (patch) | |
tree | 7ac907885922212f530eea15b5f25de8fec0d531 /sax/source/tools/converter.cxx | |
parent | ef59252a7a3e9474569710866ab4ff5c1225cff7 (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'sax/source/tools/converter.cxx')
-rw-r--r-- | sax/source/tools/converter.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |