| 15 | } |
| 16 | |
| 17 | void PluginListProxy::connectSignals() |
| 18 | { |
| 19 | m_Connections.push_back( |
| 20 | m_Proxied->onRefreshed(callSignalIfPluginActive(m_OrganizerProxy, m_Refreshed))); |
| 21 | m_Connections.push_back(m_Proxied->onPluginMoved( |
| 22 | callSignalIfPluginActive(m_OrganizerProxy, m_PluginMoved))); |
| 23 | m_Connections.push_back(m_Proxied->onPluginStateChanged( |
| 24 | callSignalIfPluginActive(m_OrganizerProxy, m_PluginStateChanged))); |
| 25 | } |
| 26 | |
| 27 | void PluginListProxy::disconnectSignals() |
| 28 | { |
nothing calls this directly
no test coverage detected