summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-09-18 16:54:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-09-19 09:31:43 +0200
commitff95bd4f88172d01436b1f1bf0716240f3156504 (patch)
tree4460bdcb144cf0a3c2b42ac5676b72a7211c5b41 /sfx2
parent8c2327ca349da9edad0f6e494be3f1c11378d15c (diff)
unused m_xProgressHandler in TplTaskEnvironment
since initial commit 7bf29c44efa5985f59c160ba5a75dc212f955d42 Date: Tue Oct 14 05:23:43 2008 +0000 CWS-TOOLING: integrate CWS mba30fixes02 Change-Id: I6284ed98c0d9f06c78c5abdf29657988ac42fa43
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/doc/doctemplates.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/sfx2/source/doc/doctemplates.cxx b/sfx2/source/doc/doctemplates.cxx
index 3d39a8074a83..d0e5cb929620 100644
--- a/sfx2/source/doc/doctemplates.cxx
+++ b/sfx2/source/doc/doctemplates.cxx
@@ -161,7 +161,6 @@ typedef vector< GroupData_Impl* > GroupList_Impl;
class TplTaskEnvironment : public ::cppu::WeakImplHelper< ucb::XCommandEnvironment >
{
uno::Reference< task::XInteractionHandler > m_xInteractionHandler;
- uno::Reference< ucb::XProgressHandler > m_xProgressHandler;
public:
explicit TplTaskEnvironment( const uno::Reference< task::XInteractionHandler>& rxInteractionHandler )
@@ -172,7 +171,7 @@ public:
{ return m_xInteractionHandler; }
virtual uno::Reference<ucb::XProgressHandler> SAL_CALL getProgressHandler() override
- { return m_xProgressHandler; }
+ { return uno::Reference<ucb::XProgressHandler>(); }
};
class SfxDocTplService_Impl