| 210 | } |
| 211 | |
| 212 | void SplashScreen::unsubscribeFromCoreSignals() |
| 213 | { |
| 214 | // Disconnect signals from client |
| 215 | m_handler_init_message->disconnect(); |
| 216 | m_handler_show_progress->disconnect(); |
| 217 | for (const auto& handler : m_connected_wallet_handlers) { |
| 218 | handler->disconnect(); |
| 219 | } |
| 220 | m_connected_wallet_handlers.clear(); |
| 221 | m_connected_wallets.clear(); |
| 222 | } |
| 223 | |
| 224 | void SplashScreen::showMessage(const QString &message, int alignment, const QColor &color) |
| 225 | { |
nothing calls this directly
no test coverage detected