| 252 | } |
| 253 | |
| 254 | void SendCoinsEntry::updateDisplayUnit() |
| 255 | { |
| 256 | if(model && model->getOptionsModel()) |
| 257 | { |
| 258 | // Update payAmount with the current unit |
| 259 | ui->payAmount->setDisplayUnit(model->getOptionsModel()->getDisplayUnit()); |
| 260 | ui->payAmount_is->setDisplayUnit(model->getOptionsModel()->getDisplayUnit()); |
| 261 | ui->payAmount_s->setDisplayUnit(model->getOptionsModel()->getDisplayUnit()); |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | bool SendCoinsEntry::updateLabel(const QString &address) |
| 266 | { |
nothing calls this directly
no test coverage detected