From: Manuel Nickschas Date: Mon, 10 Sep 2018 16:38:20 +0000 (+0200) Subject: clazy: Convert many old-style connects into function pointer based X-Git-Tag: test-travis-01~132 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=fcacaaf16551524c7ebb6114254d005274cc3d63;hp=fcacaaf16551524c7ebb6114254d005274cc3d63 clazy: Convert many old-style connects into function pointer based Since Qt5, signal/slot connections can be expressed using function pointers rather than the SIGNAL/SLOT macros. This is a) much more efficient, and b) provides a compile-time check for the sender and receiver being compatible. Let clazy auto-fix old-style connects where it can. However, a lot of occurrences remain where we'll need manual intervention for one reason or another. ---