File tree 2 files changed +14
-3
lines changed
2 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 59
59
<reflection>
60
60
<call arg =" 2" >invokeMethod</call>
61
61
</reflection>
62
- <define name =" SIGNAL(X)" value =" #X" />
63
- <define name =" SLOT(X)" value =" #X" />
62
+ <!-- < define name =" SIGNAL(X)" value =" #X" /> -- >
63
+ <!-- < define name =" SLOT(X)" value =" #X" /> -- >
64
64
<!-- T qAbs(const T &t) -->
65
65
<function name =" qAbs" >
66
66
<pure/>
Original file line number Diff line number Diff line change @@ -811,4 +811,15 @@ struct BQObject_missingOverride { // #13406
811
811
812
812
struct DQObject_missingOverride : BQObject_missingOverride {
813
813
Q_OBJECT
814
- };
814
+ };
815
+
816
+ class Foo { // #13236
817
+ Foo ();
818
+ void dostuff ();
819
+ };
820
+
821
+ Foo::Foo () {
822
+ connect (a, SIGNAL (dostuff ()), this , SLOT (dostuff ()));
823
+ }
824
+
825
+ void Foo::dostuff () {} // Should not warn here with unusedFunction
You can’t perform that action at this time.
0 commit comments