look for =() in loplugin:unnecessaryparen

Change-Id: I4f9b71ff7767e90987bb40358fc46ed5d1d571d0
Reviewed-on: https://gerrit.libreoffice.org/44944
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin
2017-11-20 10:26:01 +02:00
parent fda2ee3d87
commit 4f4486c61d
73 changed files with 225 additions and 143 deletions

View File

@@ -374,8 +374,8 @@ static std::vector< OUString > lookupKeys(
if( keySupplier.is() )
{
Reference< XPropertySet > set( keySupplier, UNO_QUERY );
set->getPropertyValue( getStatics().NAME ) >>= (*pTable);
set->getPropertyValue( getStatics().SCHEMA_NAME ) >>= (*pSchema );
set->getPropertyValue( getStatics().NAME ) >>= *pTable;
set->getPropertyValue( getStatics().SCHEMA_NAME ) >>= *pSchema;
set.clear();
Reference< XEnumerationAccess > keys ( keySupplier->getKeys(), UNO_QUERY );