| 213 | } |
| 214 | |
| 215 | void SendCoinsEntry::changeEvent(QEvent* e) |
| 216 | { |
| 217 | if (e->type() == QEvent::PaletteChange) { |
| 218 | ui->addressBookButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/address-book"))); |
| 219 | ui->pasteButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/editpaste"))); |
| 220 | ui->deleteButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove"))); |
| 221 | } |
| 222 | |
| 223 | QWidget::changeEvent(e); |
| 224 | } |
| 225 | |
| 226 | bool SendCoinsEntry::updateLabel(const QString &address) |
| 227 | { |
nothing calls this directly
no test coverage detected