| 305 | } |
| 306 | |
| 307 | void ProgressDialog::slotTransactionProgress( ProgressItem *item, |
| 308 | unsigned int progress ) |
| 309 | { |
| 310 | const auto itemIt = mTransactionsToListviewItems.constFind(item); |
| 311 | if (itemIt != mTransactionsToListviewItems.constEnd()) { |
| 312 | TransactionItem* ti = *itemIt; |
| 313 | ti->setProgress( progress ); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | void ProgressDialog::slotTransactionStatus( ProgressItem *item, |
| 318 | const QString &status ) |
nothing calls this directly
no test coverage detected