| 571 | } |
| 572 | |
| 573 | static void ShowProgress(WalletModel* walletmodel, const std::string& title, int nProgress) |
| 574 | { |
| 575 | // emits signal "showProgress" |
| 576 | QMetaObject::invokeMethod(walletmodel, "showProgress", Qt::QueuedConnection, |
| 577 | Q_ARG(QString, QString::fromStdString(title)), |
| 578 | Q_ARG(int, nProgress)); |
| 579 | } |
| 580 | |
| 581 | static void NotifyWatchonlyChanged(WalletModel* walletmodel, bool fHaveWatchonly) |
| 582 | { |
no outgoing calls
no test coverage detected