diff options
Diffstat (limited to 'ucbhelper/source/provider/resultsethelper.cxx')
-rw-r--r-- | ucbhelper/source/provider/resultsethelper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucbhelper/source/provider/resultsethelper.cxx b/ucbhelper/source/provider/resultsethelper.cxx index a85a182c368f..4de871d1c281 100644 --- a/ucbhelper/source/provider/resultsethelper.cxx +++ b/ucbhelper/source/provider/resultsethelper.cxx @@ -81,10 +81,10 @@ void SAL_CALL ResultSetImplHelper::release() css::uno::Any SAL_CALL ResultSetImplHelper::queryInterface( const css::uno::Type & rType ) { css::uno::Any aRet = cppu::queryInterface( rType, - (static_cast< lang::XTypeProvider* >(this)), - (static_cast< lang::XServiceInfo* >(this)), - (static_cast< lang::XComponent* >(this)), - (static_cast< css::ucb::XDynamicResultSet* >(this)) + static_cast< lang::XTypeProvider* >(this), + static_cast< lang::XServiceInfo* >(this), + static_cast< lang::XComponent* >(this), + static_cast< css::ucb::XDynamicResultSet* >(this) ); return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); } |