| 65 | #define CONNECT connect(sender(), SIGNAL(objectNameChanged(QString)), qApp, SLOT(quit())) |
| 66 | |
| 67 | void MyObject::superSlot2(void*) |
| 68 | { |
| 69 | QTimer::singleShot(154, this, SLOT(superSlot2())); |
| 70 | |
| 71 | DO( _, connect(sender(), SIGNAL( destroyed(QObject*)), qApp, SLOT(quit())) ); |
| 72 | |
| 73 | CONNECT; |
| 74 | |
| 75 | QSignalSpy s(qApp, SIGNAL(applicationNameChanged())); |
| 76 | } |
| 77 | |
| 78 | |
| 79 | void MyObject::anotherSlot(const QString& str1, unsigned int i1, const QMap< int, QString >& map) |
nothing calls this directly
no outgoing calls
no test coverage detected