summaryrefslogtreecommitdiff
path: root/include/ucbhelper/interceptedinteraction.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/interceptedinteraction.hxx')
-rw-r--r--include/ucbhelper/interceptedinteraction.hxx42
1 files changed, 0 insertions, 42 deletions
diff --git a/include/ucbhelper/interceptedinteraction.hxx b/include/ucbhelper/interceptedinteraction.hxx
index 26e1a9ad4c51..50dae3304b45 100644
--- a/include/ucbhelper/interceptedinteraction.hxx
+++ b/include/ucbhelper/interceptedinteraction.hxx
@@ -102,35 +102,6 @@ class UCBHELPER_DLLPUBLIC InterceptedInteraction : public ::cppu::WeakImplHelper
Handle = INVALID_HANDLE;
}
-
- /** @short initialize this instance.
-
- @param nHandle
- used to identify every intercepted request
-
- @param aRequest
- must contain an exception object, which can be checked
- in its uno-type against the later handled interaction.
-
- @param aContinuation
- must contain a continuation object, which is used
- in its uno-type to locate the same continuation
- inside the list of possible ones.
-
- @param bMatchExact
- influence the type check of the interception request.
- Its not used to check the continuation!
- */
- InterceptedRequest( sal_Int32 nHandle ,
- const css::uno::Any& aRequest ,
- const css::uno::Type& aContinuation,
- bool bMatchExact )
- {
- Handle = nHandle;
- Request = aRequest;
- Continuation = aContinuation;
- MatchExact = bMatchExact;
- }
};
@@ -180,19 +151,6 @@ class UCBHELPER_DLLPUBLIC InterceptedInteraction : public ::cppu::WeakImplHelper
InterceptedInteraction();
- /** @short initialize a new instance with real values.
-
- @param xInterceptedHandler
- the outside interaction handler, which should
- be intercepted here.
-
- @param lInterceptions
- the list of intercepted requests.
- */
- InterceptedInteraction(const css::uno::Reference< css::task::XInteractionHandler >& xInterceptedHandler,
- const ::std::vector< InterceptedRequest >& lInterceptions );
-
-
/** @short initialize a new instance with the interaction handler,
which should be intercepted.