summaryrefslogtreecommitdiff
path: root/svx/source/form/formdispatchinterceptor.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-08 16:28:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-08 16:28:40 +0200
commitbc2becdf1a12a1020584ee808c965e41f1837383 (patch)
tree9e49c55cf32ce8cbd5997a62f9be2250ced4669f /svx/source/form/formdispatchinterceptor.cxx
parent95f03f49940f88ebd49a02e1d133cf83259eef47 (diff)
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I94b2fbbb00e9772b668128f31cf08115bdfb16b5
Diffstat (limited to 'svx/source/form/formdispatchinterceptor.cxx')
-rw-r--r--svx/source/form/formdispatchinterceptor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/formdispatchinterceptor.cxx b/svx/source/form/formdispatchinterceptor.cxx
index 8e11b18ae175..16e774f20373 100644
--- a/svx/source/form/formdispatchinterceptor.cxx
+++ b/svx/source/form/formdispatchinterceptor.cxx
@@ -55,7 +55,7 @@ namespace svxform
osl_atomic_increment(&m_refCount);
if (_rxToIntercept.is())
{
- _rxToIntercept->registerDispatchProviderInterceptor((XDispatchProviderInterceptor*)this);
+ _rxToIntercept->registerDispatchProviderInterceptor(static_cast<XDispatchProviderInterceptor*>(this));
// this should make us the top-level dispatch-provider for the component, via a call to our
// setDispatchProvider we should have got an fallback for requests we (i.e. our master) cannot fulfill
Reference< XComponent> xInterceptedComponent(_rxToIntercept, UNO_QUERY);