| 16 | } |
| 17 | |
| 18 | void ModListProxy::connectSignals() |
| 19 | { |
| 20 | m_Connections.push_back(m_Proxied->onModInstalled( |
| 21 | callSignalIfPluginActive(m_OrganizerProxy, m_ModInstalled))); |
| 22 | m_Connections.push_back( |
| 23 | m_Proxied->onModMoved(callSignalIfPluginActive(m_OrganizerProxy, m_ModMoved))); |
| 24 | m_Connections.push_back(m_Proxied->onModRemoved( |
| 25 | callSignalIfPluginActive(m_OrganizerProxy, m_ModRemoved))); |
| 26 | m_Connections.push_back(m_Proxied->onModStateChanged( |
| 27 | callSignalIfPluginActive(m_OrganizerProxy, m_ModStateChanged))); |
| 28 | } |
| 29 | |
| 30 | void ModListProxy::disconnectSignals() |
| 31 | { |
no test coverage detected