| 197 | } |
| 198 | |
| 199 | void ReceiveCoinsDialog::on_recentRequestsView_doubleClicked(const QModelIndex &index) |
| 200 | { |
| 201 | const RecentRequestsTableModel *submodel = model->getRecentRequestsTableModel(); |
| 202 | ReceiveRequestDialog *dialog = new ReceiveRequestDialog(this); |
| 203 | dialog->setModel(model); |
| 204 | dialog->setInfo(submodel->entry(index.row()).recipient); |
| 205 | dialog->setAttribute(Qt::WA_DeleteOnClose); |
| 206 | dialog->show(); |
| 207 | } |
| 208 | |
| 209 | void ReceiveCoinsDialog::recentRequestsView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) |
| 210 | { |
nothing calls this directly
no test coverage detected