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.
For which tool did you want to report this? Qt Creator? Clazy? KDevelop?
clazy, somehow I changed id before submitting, sorry.
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
I see, I though it applied to parameter types and not to spaces. Thank you.