summaryrefslogtreecommitdiff
path: root/ucbhelper/source/client/interceptedinteraction.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucbhelper/source/client/interceptedinteraction.cxx')
-rw-r--r--ucbhelper/source/client/interceptedinteraction.cxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/ucbhelper/source/client/interceptedinteraction.cxx b/ucbhelper/source/client/interceptedinteraction.cxx
index fdd26ce72cc2..a03d6dcf8ef4 100644
--- a/ucbhelper/source/client/interceptedinteraction.cxx
+++ b/ucbhelper/source/client/interceptedinteraction.cxx
@@ -115,11 +115,7 @@ InterceptedInteraction::EInterceptionState InterceptedInteraction::impl_intercep
css::uno::Type aInterceptedType = rInterception.Request.getValueType();
// check the request
- bool bMatch = false;
- if (rInterception.MatchExact)
- bMatch = aInterceptedType.equals(aRequestType);
- else
- bMatch = aInterceptedType.isAssignableFrom(aRequestType); // don't change intercepted and request type here -> it will check the wrong direction!
+ bool bMatch = aInterceptedType.isAssignableFrom(aRequestType); // don't change intercepted and request type here -> it will check the wrong direction!
// intercepted ...
// Call they might existing derived class, so they can handle that by its own.