Coding-style: remove superfluous parentheses

Mostly replace "return (expression);" by "return expression;" and one
case of "function((parameter))" by "function(parameter)".

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-02-17 21:21:16 +01:00 committed by Lubomir I. Ivanov
parent 36b8594cce
commit 5c248d91cd
20 changed files with 30 additions and 30 deletions

View file

@ -47,9 +47,9 @@ static dc_descriptor_t *getDeviceType(QString btName)
}
if (!vendor.isEmpty() && !product.isEmpty())
return(descriptorLookup.value(vendor + product));
return descriptorLookup.value(vendor + product);
return(NULL);
return NULL;
}
BTDiscovery::BTDiscovery(QObject *parent) : m_btValid(false),