| 168 | } |
| 169 | |
| 170 | void ReceiveCoinsDialog::on_recentRequestsView_doubleClicked(const QModelIndex &index) |
| 171 | { |
| 172 | const RecentRequestsTableModel *submodel = model->getRecentRequestsTableModel(); |
| 173 | ReceiveRequestDialog *dialog = new ReceiveRequestDialog(this); |
| 174 | dialog->setModel(model); |
| 175 | dialog->setInfo(submodel->entry(index.row()).recipient); |
| 176 | dialog->setAttribute(Qt::WA_DeleteOnClose); |
| 177 | dialog->show(); |
| 178 | } |
| 179 | |
| 180 | void ReceiveCoinsDialog::recentRequestsView_selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) |
| 181 | { |
nothing calls this directly
no test coverage detected