| 409 | } |
| 410 | |
| 411 | static void ShowProgress(WalletModel *walletmodel, const std::string &title, int nProgress) |
| 412 | { |
| 413 | // emits signal "showProgress" |
| 414 | QMetaObject::invokeMethod(walletmodel, "showProgress", Qt::QueuedConnection, |
| 415 | Q_ARG(QString, QString::fromStdString(title)), |
| 416 | Q_ARG(int, nProgress)); |
| 417 | } |
| 418 | |
| 419 | static void NotifyWatchonlyChanged(WalletModel *walletmodel, bool fHaveWatchonly) |
| 420 | { |
no outgoing calls
no test coverage detected