Warning, /sdk/clazy/docs/checks/README-connect-by-name.md is written in an unsupported language. File is not indexed.

0001 # connect-by-name
0002 
0003 Warns when "auto-connection slots" are used. They're also known as "connect by name", an old and unpopular feature which isn't recommended. Consult the [official documentation](http://doc.qt.io/qt-5/qobject.html#auto-connection) for more information.
0004 
0005 These types of connections are very brittle, as a simple object rename would break your code.
0006 In Qt 5 the *pointer-to-member-function* connect syntax is recommended as it catches errors at compile time.
0007 
0008 This check simply warns for any slot named like on_*_*, because even if you're not using .ui files this naming is misleading and not good for readability, as the reader would think you're using auto-connection.