| 127 | namespace TestNS { |
| 128 | |
| 129 | class C : public QObject { |
| 130 | Q_OBJECT |
| 131 | signals: |
| 132 | void sig1(C *foo); |
| 133 | void sig2(TestNS::C *foo); |
| 134 | public slots: |
| 135 | void MySlot() { |
| 136 | connect(this, SIGNAL(sig1(C*)), this, SLOT(deleteLater())); |
| 137 | connect(this, SIGNAL(sig2(TestNS::C*)), this, SLOT(deleteLater())); |
| 138 | } |
| 139 | }; |
| 140 | |
| 141 | } |
| 142 |
nothing calls this directly
no outgoing calls
no test coverage detected