summaryrefslogtreecommitdiff
path: root/filter/source/t602
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-06-08 16:25:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-06-08 16:25:08 +0200
commitb5a062bd1c6d5af34d3838192365fb780a910c3f (patch)
tree9368db421727b2c9e3a014d311f22783e5d6a61e /filter/source/t602
parentc278518819d2a84655d5ce52b16cf466ee33bcb1 (diff)
loplugin:cstylecast: deal with remaining pointer casts
Change-Id: I2976a8e6a3c9abf70e153a71bf0374d24d92968d
Diffstat (limited to 'filter/source/t602')
-rw-r--r--filter/source/t602/t602filter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/t602/t602filter.cxx b/filter/source/t602/t602filter.cxx
index 4c30eac5b463..0623c2e64406 100644
--- a/filter/source/t602/t602filter.cxx
+++ b/filter/source/t602/t602filter.cxx
@@ -875,7 +875,7 @@ Sequence< OUString > SAL_CALL T602ImportFilter_getSupportedServiceNames( )
Reference< XInterface > SAL_CALL T602ImportFilter_createInstance( const Reference< XMultiServiceFactory > & rSMgr)
throw( Exception )
{
- return (cppu::OWeakObject*) new T602ImportFilter( rSMgr );
+ return static_cast<cppu::OWeakObject*>(new T602ImportFilter( rSMgr ));
}
T602ImportFilterDialog::T602ImportFilterDialog(const ::com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory > &r ) :
@@ -1164,7 +1164,7 @@ Sequence< OUString > SAL_CALL T602ImportFilterDialog_getSupportedServiceNames(
Reference< XInterface > SAL_CALL T602ImportFilterDialog_createInstance( const Reference< XMultiServiceFactory > & rSMgr)
throw( Exception )
{
- return (cppu::OWeakObject*) new T602ImportFilterDialog( rSMgr );
+ return static_cast<cppu::OWeakObject*>(new T602ImportFilterDialog( rSMgr ));
}
}