diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-07-30 17:46:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-07-31 12:53:03 +0200 |
commit | ed96bbd34403277abbe37c06f0e74a3c09f54979 (patch) | |
tree | a29da80678275481d84776d0a80cb605ffc0c80c /include | |
parent | e76e9e5d7299d88137d57aefe174a84474e2909c (diff) |
Improved loplugin:stringconstant (now that GCC 7 supports it): unotools
Change-Id: Idc40b72de04ee17dcc60913cc5f81f5f69dd57e9
Reviewed-on: https://gerrit.libreoffice.org/76631
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/compatibility.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/compatibility.hxx b/include/unotools/compatibility.hxx index de5585313b92..ed3e14f5026d 100644 --- a/include/unotools/compatibility.hxx +++ b/include/unotools/compatibility.hxx @@ -73,12 +73,12 @@ class UNOTOOLS_DLLPUBLIC SvtCompatibilityEntry static OUString getUserEntryName() { - return OUString( "_user" ); + return "_user"; } static OUString getDefaultEntryName() { - return OUString( "_default" ); + return "_default"; } static Index getIndex( const OUString& rName ) |