| 265 | } |
| 266 | |
| 267 | void SendCoinsEntry::changeEvent(QEvent* e) |
| 268 | { |
| 269 | if (e->type() == QEvent::PaletteChange) { |
| 270 | ui->addressBookButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/address-book"))); |
| 271 | ui->pasteButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/editpaste"))); |
| 272 | ui->deleteButton->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove"))); |
| 273 | ui->deleteButton_is->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove"))); |
| 274 | ui->deleteButton_s->setIcon(platformStyle->SingleColorIcon(QStringLiteral(":/icons/remove"))); |
| 275 | } |
| 276 | |
| 277 | QStackedWidget::changeEvent(e); |
| 278 | } |
| 279 | |
| 280 | bool SendCoinsEntry::updateLabel(const QString &address) |
| 281 | { |
nothing calls this directly
no test coverage detected