diff options
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 */ |