| 431 | } |
| 432 | |
| 433 | static void ShowProgress(WalletModel *walletmodel, const std::string &title, int nProgress) |
| 434 | { |
| 435 | // emits signal "showProgress" |
| 436 | bool invoked = QMetaObject::invokeMethod(walletmodel, "showProgress", Qt::QueuedConnection, |
| 437 | Q_ARG(QString, QString::fromStdString(title)), |
| 438 | Q_ARG(int, nProgress)); |
| 439 | assert(invoked); |
| 440 | } |
| 441 | |
| 442 | static void NotifyWatchonlyChanged(WalletModel *walletmodel, bool fHaveWatchonly) |
| 443 | { |
no outgoing calls
no test coverage detected