| 968 | static ConnectionMap s_action_map; |
| 969 | |
| 970 | void |
| 971 | action_connect (QAction *action, const char *signal, QObject *receiver, const char *slot) |
| 972 | { |
| 973 | if (Recorder::instance ()) { |
| 974 | s_action_map.register_connection (ConnectionSpec (action, signal)); |
| 975 | } |
| 976 | QObject::connect (action, signal, receiver, slot); |
| 977 | } |
| 978 | |
| 979 | void |
| 980 | action_disconnect (QAction *action, const char *signal, QObject *receiver, const char *slot) |
no test coverage detected