Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
Qt Creator 4.3.1, Qt Creator 4.4.0
-
None
-
Windows 7
Description
https://gyazo.com/1a02fe2532605ccdd79b0ab7dea32551
highlighed OK
https://gyazo.com/921afc5d1ff3170212e630d9792ad3e3
class body is not highlighted when connecting to a slot
on MacOS platform everything is OK
#include <QObject> class Test : public QObject { public: void connect(); private slots: void testSlot(); }; void Test::connect() { QObject::connect(this, &QObject::destroyed, this, &Test::testSlot); }