summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-06-05 07:37:06 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-06-05 08:47:00 +0200
commit91f13f44f26e817b6211c48ca38dcffee4f8fa37 (patch)
tree40e78ca3fc57fa8e8adc3e757a6eac067a7d927d
parentUpcoming loplugin:elidestringvar: sccomp (diff)
downloadcore-91f13f44f26e817b6211c48ca38dcffee4f8fa37.tar.gz
core-91f13f44f26e817b6211c48ca38dcffee4f8fa37.zip
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>
-rw-r--r--shell/source/cmdmail/cmdmailsuppl.cxx3
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;