diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 09:57:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-10-01 13:19:04 +0200 |
commit | 664de5a816bdcb68ada087f99ef5a76139890fdf (patch) | |
tree | 30dca6260b95bf402930be3eb33766923182b1c1 /shell | |
parent | f88160d640b3efe4ffdf8126795a56d25d83944d (diff) |
loplugin:stringconstant (clang-cl)
Change-Id: Id1a82cea4444255fdb693e126b7571a406094624
Reviewed-on: https://gerrit.libreoffice.org/79916
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/backends/wininetbe/wininetbackend.cxx | 2 | ||||
-rw-r--r-- | shell/source/win32/SysShExec.cxx | 2 | ||||
-rw-r--r-- | shell/source/win32/simplemail/smplmailsuppl.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/shell/source/backends/wininetbe/wininetbackend.cxx b/shell/source/backends/wininetbe/wininetbackend.cxx index adc0133dfc32..599195dcebf7 100644 --- a/shell/source/backends/wininetbe/wininetbackend.cxx +++ b/shell/source/backends/wininetbe/wininetbackend.cxx @@ -341,7 +341,7 @@ css::uno::Any WinInetBackend::getPropertyValue( } OUString WinInetBackend::getBackendName() { - return OUString("com.sun.star.comp.configuration.backend.WinInetBackend") ; + return "com.sun.star.comp.configuration.backend.WinInetBackend" ; } OUString SAL_CALL WinInetBackend::getImplementationName() diff --git a/shell/source/win32/SysShExec.cxx b/shell/source/win32/SysShExec.cxx index 910aae1c095f..73ef77bbe6a1 100644 --- a/shell/source/win32/SysShExec.cxx +++ b/shell/source/win32/SysShExec.cxx @@ -484,7 +484,7 @@ void SAL_CALL CSysShExec::execute( const OUString& aCommand, const OUString& aPa OUString SAL_CALL CSysShExec::getImplementationName( ) { - return OUString(SYSSHEXEC_IMPL_NAME ); + return SYSSHEXEC_IMPL_NAME; } sal_Bool SAL_CALL CSysShExec::supportsService( const OUString& ServiceName ) diff --git a/shell/source/win32/simplemail/smplmailsuppl.cxx b/shell/source/win32/simplemail/smplmailsuppl.cxx index 4af43f4a06cc..34c623b7c29d 100644 --- a/shell/source/win32/simplemail/smplmailsuppl.cxx +++ b/shell/source/win32/simplemail/smplmailsuppl.cxx @@ -72,7 +72,7 @@ Reference<XSimpleMailClient> SAL_CALL CSmplMailSuppl::querySimpleMailClient() OUString SAL_CALL CSmplMailSuppl::getImplementationName() { - return OUString(COMP_IMPL_NAME); + return COMP_IMPL_NAME; } sal_Bool SAL_CALL CSmplMailSuppl::supportsService(const OUString& ServiceName) |