diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-06-05 07:37:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-06-05 08:47:00 +0200 |
commit | 91f13f44f26e817b6211c48ca38dcffee4f8fa37 (patch) | |
tree | 40e78ca3fc57fa8e8adc3e757a6eac067a7d927d /shell | |
parent | 5bc4d69007cfb715ea16e616c2fc5b90adc2f289 (diff) |
Upcoming loplugin:elidestringvar: shell
Change-Id: I4459f995f7515beeb2e4d2446cfe4cdcfb1a07ae
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95548
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/cmdmail/cmdmailsuppl.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx b/shell/source/cmdmail/cmdmailsuppl.cxx index bbd0ae07d4cf..415a6c4d0051 100644 --- a/shell/source/cmdmail/cmdmailsuppl.cxx +++ b/shell/source/cmdmail/cmdmailsuppl.cxx @@ -159,11 +159,10 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM // Query XNameAccess interface of the org.openoffice.Office.Common/ExternalMailer // configuration node to retrieve the users preferred email application. This may // transparently by redirected to e.g. the corresponding GConf setting in GNOME. - OUString aConfigRoot = "org.openoffice.Office.Common/ExternalMailer"; PropertyValue aProperty; aProperty.Name = "nodepath"; - aProperty.Value <<= aConfigRoot; + aProperty.Value <<= OUString("org.openoffice.Office.Common/ExternalMailer"); Sequence< Any > aArgumentList( 1 ); aArgumentList[0] <<= aProperty; |