| 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected