summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/ftp/ftpintreq.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-09-10 17:40:45 +0200
committerMichael Stahl <mstahl@redhat.com>2015-09-10 17:42:25 +0200
commit0a94746db12fbab5c30c1009912ee910b9f20553 (patch)
tree17ba07b5b8af42d766a07f384cfa7c5e792f9983 /ucb/source/ucp/ftp/ftpintreq.hxx
parent67f4626d079678e125f74fe0897d86341cda272d (diff)
ucb: fix another duplicate WeakImplHelper<XInteractionRequest>
Change-Id: I0728601cd7abd8f8d718728d5983aed94355bdc0
Diffstat (limited to 'ucb/source/ucp/ftp/ftpintreq.hxx')
-rw-r--r--ucb/source/ucp/ftp/ftpintreq.hxx19
1 files changed, 7 insertions, 12 deletions
diff --git a/ucb/source/ucp/ftp/ftpintreq.hxx b/ucb/source/ucp/ftp/ftpintreq.hxx
index ce8d8faf2fbb..3bab88b5f6c1 100644
--- a/ucb/source/ucp/ftp/ftpintreq.hxx
+++ b/ucb/source/ucp/ftp/ftpintreq.hxx
@@ -71,30 +71,25 @@ namespace ftp {
- class XInteractionRequestImpl : public cppu::WeakImplHelper<
- css::task::XInteractionRequest >
+ class XInteractionRequestImpl
{
public:
XInteractionRequestImpl();
- com::sun::star::uno::Any SAL_CALL getRequest( )
- throw (css::uno::RuntimeException,
- std::exception) SAL_OVERRIDE;
-
- css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > SAL_CALL
- getContinuations( )
- throw (css::uno::RuntimeException,
- std::exception) SAL_OVERRIDE;
-
bool approved() const;
+ css::uno::Reference<css::task::XInteractionRequest> const& getRequest() const
+ {
+ return m_xRequest;
+ }
+
private:
XInteractionApproveImpl* p1;
XInteractionDisapproveImpl* p2;
- css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > m_aSeq;
+ css::uno::Reference<css::task::XInteractionRequest> m_xRequest;
};
}