summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file/filinsreq.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-05-16 10:05:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-05-17 08:39:51 +0200
commit9ffdf7adc00d8e9d931184d3008f4e505e4a5024 (patch)
tree8b75090145b4218578e42461693fd73d66edb3b0 /ucb/source/ucp/file/filinsreq.cxx
parentae39b1ef2dcc9ef7784ff002dd10318564931c2b (diff)
loplugin:unusedfields in tools..xmlhelp
Change-Id: I5e909a8def86ce9ad150440e6c6ad304e855cc69 Reviewed-on: https://gerrit.libreoffice.org/54415 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/ucp/file/filinsreq.cxx')
-rw-r--r--ucb/source/ucp/file/filinsreq.cxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/ucb/source/ucp/file/filinsreq.cxx b/ucb/source/ucp/file/filinsreq.cxx
index e33f9183d92a..9275b47aeab3 100644
--- a/ucb/source/ucp/file/filinsreq.cxx
+++ b/ucb/source/ucp/file/filinsreq.cxx
@@ -47,7 +47,6 @@ XInteractionRequestImpl::XInteractionRequestImpl(
p2( new XInteractionAbortImpl ),
m_nErrorCode(0),
m_nMinorError(0),
- m_aClashingName(aClashingName),
m_xOrigin(xOrigin)
{
if( pShell )
@@ -59,7 +58,7 @@ XInteractionRequestImpl::XInteractionRequestImpl(
if(m_nErrorCode == TASKHANDLING_FOLDER_EXISTS_MKDIR)
{
NameClashException excep;
- excep.Name = m_aClashingName;
+ excep.Name = aClashingName;
excep.Classification = InteractionClassification_ERROR;
excep.Context = m_xOrigin;
excep.Message = "folder exists and overwrite forbidden";
@@ -72,7 +71,7 @@ XInteractionRequestImpl::XInteractionRequestImpl(
PropertyValue prop;
prop.Name = "ResourceName";
prop.Handle = -1;
- prop.Value <<= m_aClashingName;
+ prop.Value <<= aClashingName;
Sequence<Any> seq(1);
seq[0] <<= prop;
excep.Arguments = seq;