Details
-
Bug
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
Qt Creator 12.0.1
Description
Code like
connect(m_foo,
&Foo::barChanged,
this,
&Baz::processChange,
Qt::UniqueConnection);
where this is Baz and processChange is a private slot of it produces
UniqueConnection is not supported with non-member functions
. Which looks like a false positive.