summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-11-07 10:03:20 +0100
committerStephan Bergmann <sbergman@redhat.com>2017-11-07 10:04:50 +0100
commit19f01900728fb77ec050e70c4fbd1129f6cddef4 (patch)
treef641efbaeb15796df1878ee73c4d8d6927b8de7a /ucb
parente6f40de5fc6ad3edd5a482f39779d54890fac2ed (diff)
loplugin:unnecessaryparen
Change-Id: Icb5dacd41bc5753ffa2498fdd244b1f78483699f
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/webdavprovider.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/webdavprovider.cxx b/ucb/source/ucp/webdav/webdavprovider.cxx
index 7e66cfe0d5d1..78ea35df5a71 100644
--- a/ucb/source/ucp/webdav/webdavprovider.cxx
+++ b/ucb/source/ucp/webdav/webdavprovider.cxx
@@ -64,9 +64,9 @@ void SAL_CALL ContentProvider::release()
css::uno::Any SAL_CALL ContentProvider::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< ucb::XContentProvider* >(this))
+ static_cast< lang::XTypeProvider* >(this),
+ static_cast< lang::XServiceInfo* >(this),
+ static_cast< ucb::XContentProvider* >(this)
);
return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType );
}