| 68 | } |
| 69 | |
| 70 | void SendCoinsEntry::on_addressBookButton_clicked() |
| 71 | { |
| 72 | if(!model) |
| 73 | return; |
| 74 | AddressBookPage dlg(platformStyle, AddressBookPage::ForSelection, AddressBookPage::SendingTab, this); |
| 75 | dlg.setModel(model->getAddressTableModel()); |
| 76 | if(dlg.exec()) |
| 77 | { |
| 78 | ui->payTo->setText(dlg.getReturnValue()); |
| 79 | ui->payAmount->setFocus(); |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | void SendCoinsEntry::on_payTo_textChanged(const QString &address) |
| 84 | { |
nothing calls this directly
no test coverage detected