Warning, /sdk/clazy/docs/checks/README-ctor-missing-parent-argument.md is written in an unsupported language. File is not indexed.

0001 # ctor-missing-parent-argument
0002 
0003 Warns when `QObject` derived classes don't have at least one CTOR receiving a QObject.
0004 
0005 This is an attempt to catch classes which are missing the parent argument.
0006 It doesn't have false-positives, but might miss true-positives. For example,
0007 if you have a CTOR which receives a `QObject* but then forget to pass it to the
0008 base CTOR.