Unverified Commit eb6f92d6 authored by Don Gagne's avatar Don Gagne Committed by GitHub

Merge pull request #7895 from DonLakeFlyer/CodingStyle

Coding Style: Unused arguments
parents c9967c74 08b5d98c
......@@ -85,8 +85,11 @@ void CodingStyle::_methodWithManyArguments(QWidget* parent,
const QString& caption,
const QString& dir,
Options options1,
Options options2,
Options /* options2 */,
Options options3)
{
// options2 is an unused method argument.
// Do not use Q_UNUSUED and do not just remove the argument name and leave the type.
// Implementataion here...
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment