aboutsummaryrefslogtreecommitdiffstats
path: root/tests/connect-not-normalized
Commit message (Collapse)AuthorAgeFilesLines
* Fix warnings missing the -Wclazy-connect-not-normalized tagSergio Martins2017-07-101-3/+3
| | | | | | | | | | The normalized string returne by Qt had embedded '\0', then we appended the -Wclazy tag, which would never appear in the output because of the nulls. This explains why the warnings weren't being seen by warning viewers. CCMAIL: volker@kdab.com
* connect-not-normalized: Add another unit-testSergio Martins2017-07-042-0/+16
| | | | volker reported some case wasn't being caught, I can't reproduce it though.
* Introducing connect-not-normalizedSergio Martins2017-06-033-0/+45
Warns when finding non-normalized SIGNAL/SLOT/Q_ARG and Q_RETURN_ARG, which cause unneeded temporary memory allocations. Idea by the Gammaray guys. CCMAIL: volker.krause@kdab.com