| 252 | } |
| 253 | |
| 254 | void TransactionView::changeEvent(QEvent* e) |
| 255 | { |
| 256 | if (e->type() == QEvent::PaletteChange) { |
| 257 | watchOnlyWidget->setItemIcon( |
| 258 | TransactionFilterProxy::WatchOnlyFilter_Yes, |
| 259 | m_platform_style->SingleColorIcon(QStringLiteral(":/icons/eye_plus"))); |
| 260 | watchOnlyWidget->setItemIcon( |
| 261 | TransactionFilterProxy::WatchOnlyFilter_No, |
| 262 | m_platform_style->SingleColorIcon(QStringLiteral(":/icons/eye_minus"))); |
| 263 | } |
| 264 | |
| 265 | QWidget::changeEvent(e); |
| 266 | } |
| 267 | |
| 268 | void TransactionView::chooseDate(int idx) |
| 269 | { |
nothing calls this directly
no test coverage detected