diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-08-10 13:03:01 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-08-10 16:49:53 +0200 |
commit | f05565193971376182db41c238b617c1463bd9d7 (patch) | |
tree | 15bfcdbe47f1d6a9bf26ba230c50c84c9d956231 /sc | |
parent | 80042cc0e9786fe8dcabe0b8f106183f8df19355 (diff) |
loplugin:stringconstant (macOS)
Change-Id: Icb9d9e1cd21e2506e36fe40a3b93b6a2521a868c
Reviewed-on: https://gerrit.libreoffice.org/77239
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/vba/vbaapplication.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbaapplication.cxx b/sc/source/ui/vba/vbaapplication.cxx index 8cb8c7481146..0f2bdbdc6529 100644 --- a/sc/source/ui/vba/vbaapplication.cxx +++ b/sc/source/ui/vba/vbaapplication.cxx @@ -971,7 +971,7 @@ ScVbaApplication::getOperatingSystem() #if defined(_WIN32) return OUString("Windows"); #elif defined(MACOSX) - return OUString("Macintosh"); + return "Macintosh"; #elif defined(UNX) // M. Office is not available on Unix systems, so it is not documented. return "Unix"; |