Bug 381976 - connect-not-normalized triggered because of spaces around the signature
Summary: connect-not-normalized triggered because of spaces around the signature
Status: RESOLVED NOT A BUG
Alias: None
Product: clazy
Classification: Developer tools
Component: general (show other bugs)
Version: unspecified
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Mathias Kraus
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-07-04 07:01 UTC by Eugenio
Modified: 2017-07-04 12:20 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Eugenio 2017-07-04 07:01:47 UTC
If a signal connection looks like this

  SIGNAL( loadStepFinished( QString, int ) )

instead of

  SIGNAL( loadStepFinished(QString, int) )

then an error is triggered:

  Signature is not normalized. Use triggerNextLoadStep(QString,int) instead of triggerNextLoadStep( QString, int )...

Removing the spaces in the parentheses solves the false positive. It is however not easily feasible in big project with automatic code styling.
Comment 1 Christoph Feck 2017-07-04 09:04:01 UTC
For which tool did you want to report this? Qt Creator? Clazy? KDevelop?
Comment 2 Eugenio 2017-07-04 11:00:33 UTC
clazy, somehow I changed id before submitting, sorry.
Comment 3 Sergio Martins 2017-07-04 11:15:01 UTC
This is not a false positive, in fact that's the whole point of this check.

Your signature is not normalized, it will allocate memory.

If you have a big project and don't want to fix it then you can disable the check instead.

There's a script in KDE somewhere that helps normalizing signatures though
Comment 4 Eugenio 2017-07-04 12:20:19 UTC
I see, I though it applied to parameter types and not to spaces. Thank you.