summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-15 16:02:03 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-16 08:26:04 +0200
commita975624bfeeb08670b90944eda372d6d4755ae34 (patch)
treeca4a79214d2f8004aa68d98e1761ff52dc2ba79d /ucb
parent83f9325f0d8d643d8b3e71fa3ff76ebbd599373d (diff)
loplugin:unusedfields in tools..vbahelper
Change-Id: Ief7d4c8e1866604eda6308ea2a5c1ce4b1c093bc Reviewed-on: https://gerrit.libreoffice.org/38836 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/ftp/ftpintreq.cxx2
-rw-r--r--ucb/source/ucp/ftp/ftpintreq.hxx4
2 files changed, 0 insertions, 6 deletions
diff --git a/ucb/source/ucp/ftp/ftpintreq.cxx b/ucb/source/ucp/ftp/ftpintreq.cxx
index e660153807c4..08b857590b9e 100644
--- a/ucb/source/ucp/ftp/ftpintreq.cxx
+++ b/ucb/source/ucp/ftp/ftpintreq.cxx
@@ -48,13 +48,11 @@ void SAL_CALL XInteractionApproveImpl::select()
// XInteractionDisapproveImpl
XInteractionDisapproveImpl::XInteractionDisapproveImpl()
- : m_bSelected(false)
{
}
void SAL_CALL XInteractionDisapproveImpl::select()
{
- m_bSelected = true;
}
// XInteractionRequestImpl
diff --git a/ucb/source/ucp/ftp/ftpintreq.hxx b/ucb/source/ucp/ftp/ftpintreq.hxx
index 50356454f05f..04b57de82aed 100644
--- a/ucb/source/ucp/ftp/ftpintreq.hxx
+++ b/ucb/source/ucp/ftp/ftpintreq.hxx
@@ -58,10 +58,6 @@ namespace ftp {
XInteractionDisapproveImpl();
virtual void SAL_CALL select() override;
-
- private:
-
- bool m_bSelected;
};